Page 1 of 5 123 ... LastLast
Results 1 to 10 of 50
  1. #1
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,694
    Plugin Contributions
    123

    Default Numinix Pinterest Add On Support Thread

    This is the support thread for Numinix's Pinterest Add On.

    http://www.zen-cart.com/downloads.php?do=file&id=1480
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  2. #2
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,694
    Plugin Contributions
    123

    Default Re: Numinix Pinterest Add On Support Thread

    If you have installed version 1.2.2 or before of this mod, you have deleted configuration group 0. Please download version 1.3 of this mod and run sql_patches/fix_config_0.sql in admin->tools->Install SQL Patches.

    If you have installed this mod and cannot see admin->configuration->Pinterest Pin It Button Configuration, please download version 1.2.2 of this mod and run the uninstall.sql script in admin->tools->install SQL Patches, then download the current version and rerun the install.sql script.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #3
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,694
    Plugin Contributions
    123

    Default Re: Numinix Pinterest Add On Support Thread

    For those who want a bit more background on this problem, please see this post: http://www.zen-cart.com/showthread.p...ag-not-working
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  4. #4
    Join Date
    Oct 2011
    Posts
    67
    Plugin Contributions
    0

    Default Re: Numinix Pinterest Add On Support Thread

    hi, thank you for the support page. i am interested in using this plug in but after reading the documentation i am not sure about how to align the css.

    the documentation states: Use the selector #pinitButton in your CSS stylesheet to position the button (use !important to override the inline styles).

    i am not 100% sure how to do that. let's say i want to align it to the left.

    #pinitButton {text-align:left}

    would this be correct?

    or if anyone has an example of showing the pinterest button underneath the larger image.

    i just want to make sure before i actually install it.

    i am open to any suggestions on placement.

    thanks

  5. #5
    Join Date
    Jun 2009
    Posts
    389
    Plugin Contributions
    0

    Default Re: Numinix Pinterest Add On Support Thread

    /*pininterest*/
    #pinitButton {margin-left:5em !important;}

  6. #6
    Join Date
    Dec 2009
    Posts
    25
    Plugin Contributions
    0

    Default Re: Numinix Pinterest Add On Support Thread

    When running the Install sql i get an error at the top saying 'Cannot execute because table admin_pages does not exist. CHECK PREFIXES!'

    Any clues?

  7. #7
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,694
    Plugin Contributions
    123

    Default Re: Numinix Pinterest Add On Support Thread

    If you're not running 1.5, remove that statement from the SQL.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  8. #8
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,694
    Plugin Contributions
    123

    Default Re: Numinix Pinterest Add On Support Thread

    BTW, this is included in the instructions:

    Patch your database by copying and pasting the contents of install.sql in the Admin Panel at Tools->Install SQL Patches. Note that the final line of install.sql is only required for Zen Cart 1.5.0 and above; if you are using Zen Cart 1.3.9, you should delete it.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  9. #9
    Join Date
    Apr 2012
    Posts
    127
    Plugin Contributions
    0

    Default Re: Numinix Pinterest Add On Support Thread

    This is my first time trying to install the addon... I am at step 1 with the SQL patching. I opened the install file, copied the code, and pasted into the SQL box in my admin. I received this error:

    Forbidden
    You don't have permission to access /zc_admin/sqlpatch.php on this server.


    Any idea what this means, and how to fix it? It's odd since I ran an sql code to do the product display columns. So I'm not sure why it won't let me run a code now.
    Last edited by meljen; 28 Nov 2012 at 10:23 PM.

  10. #10
    Join Date
    May 2010
    Location
    UK
    Posts
    85
    Plugin Contributions
    0

    Default Re: Numinix Pinterest Add On Support Thread

    Quote Originally Posted by swguy View Post
    BTW, this is included in the instructions:

    Patch your database by copying and pasting the contents of install.sql in the Admin Panel at Tools->Install SQL Patches. Note that the final line of install.sql is only required for Zen Cart 1.5.0 and above; if you are using Zen Cart 1.3.9, you should delete it.
    Please can you tell me if it is line 19 that I should delete if using Zencart 1.3.9h? Ive highlighted it in red at the bottom.

    SET @configuration_group_id=0;
    SELECT @configuration_group_id:=configuration_group_id
    FROM configuration_group
    WHERE configuration_group_title= 'Pinterest Pin-It Button'
    LIMIT 1;
    DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;
    DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id AND configuration_group_id != 0;

    INSERT INTO configuration_group (configuration_group_id, configuration_group_title, configuration_group_description, sort_order, visible) VALUES (NULL, 'Pinterest.com Pin-It Button', 'Set Pinterest.com Pin-It Button Options', '1', '1');
    SET @configuration_group_id=last_insert_id();
    UPDATE configuration_group SET sort_order = @configuration_group_id WHERE configuration_group_id = @configuration_group_id;

    INSERT INTO configuration (configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, date_added, use_function, set_function) VALUES
    (NULL, 'Version', 'PIN_IT_BUTTON_VERSION', '1.2.1', 'Version Installed:', @configuration_group_id, 0, NOW(), NULL, NULL),
    (NULL, 'Enable Pinterest Button', 'PINTEREST_BUTTON_STATUS', 'false', 'Enable the Pinterest.com Pin It Button?', @configuration_group_id, 0, NOW(), NULL, 'zen_cfg_select_option(array(\'true\', \'false\'),'),
    (NULL, 'Pinterest Button Count', 'PINTEREST_BUTTON_COUNT', 'none', 'Display the count horizontally, vertically, or disable (none)', @configuration_group_id, 10, NOW(), NULL, 'zen_cfg_select_option(array(\'none\', \'vertical\', \'horizontal\'),'),
    (NULL, 'Pinterest Method', 'PINTEREST_BUTTON_METHOD', 'basic', 'Use the basic method (for single pin-it buttons per page) or the advanced method (for multiple buttons - asynchronous):', @configuration_group_id, 20, NOW(), NULL, 'zen_cfg_select_option(array(\'basic\', \'advanced\'),');

    # Register the configuration page for Admin Access Control


    Thank you.

 

 
Page 1 of 5 123 ... LastLast

Similar Threads

  1. v151 AJAX Add to Cart [Support Thread]
    By balihr in forum All Other Contributions/Addons
    Replies: 133
    Last Post: 20 Oct 2020, 02:16 AM
  2. v150 Contact Us - Add Subject support thread
    By gjh42 in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 9 Jan 2019, 06:04 AM
  3. Add Shipping Telephone Support Thread
    By JTheed in forum Addon Admin Tools
    Replies: 31
    Last Post: 4 Sep 2018, 11:14 AM
  4. v139h Pinterest Pinit Button (Numinix)
    By enchanted1 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 7 Sep 2012, 02:42 PM
  5. v150 Numinix Pinterest mod
    By pityocamptes in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 24 Apr 2012, 08:03 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR