Results 1 to 10 of 205

Hybrid View

  1. #1
    Join Date
    Apr 2008
    Location
    Qld, Australia
    Posts
    407
    Plugin Contributions
    6

    Default Re: Ceon Back In Stock Notifications 3.0.0

    Re upgrading from ZC 1.3.9h to ZC 1.5.1.
    The install works correctly on a new database. Because I am upgrading, the database tables and entries already exist. I can invoke the back in stock notifications setting screen by manually entering the configuration id of the old page (this still exists in the database).

    The install program adds an entry in "admin_pages" table for the catalog menu but does not add a new entry for the configuration menu.

    I have manually added a new entry in the "admin_pages" table with the values page_key = 'ceon_bisn_cg', language_key = 'BOX_CEON_BACK_IN_STOCK_NOTIFICATIONS_CONFIG_GROUP', main_page = 'FILENAME_CONFIGURATION', page_params = 'gID=32' [ NOTE this value point s to you existing value], menu_key = 'configuration', display_on_menu = 'Y'

    The menu item is now correctly displayed on the admin configuration menu.

  2. #2
    Join Date
    Jan 2009
    Posts
    69
    Plugin Contributions
    0

    Default Re: Ceon Back In Stock Notifications 3.0.0

    When customer receive email about back in stock notification, the link is broken.
    Instead of showing www.xxx.com/bracelet/k0121

    it is showing /bracelet/k0121

    may i know how can i rectify that?

  3. #3
    Join Date
    Apr 2007
    Location
    Ontario, Canada
    Posts
    1,732
    Plugin Contributions
    27

    Default Re: Ceon Back In Stock Notifications 3.0.0

    juneloweelyn, I took a look at the Ceon back in stock notifications module. You're going to need to add the 'additional reference' whatever URI mapping plugin you have used to this code:
    admin/includes/functions/back_in_stock_notifications_functions.php

    Code:
    function buildLinkToProductAdminPage($name, $id, $products_type)
    {
        global $zc_products;
        
        $type_admin_handler = $zc_products->get_admin_handler($products_type);
        
        $name_length = 55;
        
        $new_name = '<a href="' . zen_href_link($type_admin_handler, 'pID=' . $id . '&product_type=' .
            $products_type . '&action=new_product', 'NONSSL', true, true, false, false) . '" title="' .
            htmlentities($name, ENT_COMPAT, CHARSET) . '" target="_blank">' .
            htmlentities(substr($name, 0, $name_length), ENT_COMPAT, CHARSET) .
            (strlen($name) > $name_length ? '...' : '') . '</a>'; 
        
        return $new_name;
    }
    I'm assuming this is the global function that builds the product id and link.

    You may need to add the same type of reference to handle the extra output on a number of other files related to what the customer can see in 'my account'.
    Twitch.
    https://www.twitchtoo.com Do you work for free? Please donate.
    June 7.2026 - NOW AVAILABLE - Twitch Base8 - Obsidian

 

 

Similar Threads

  1. Replies: 146
    Last Post: 13 Dec 2020, 09:52 AM
  2. Back In Stock Notifications
    By conor in forum All Other Contributions/Addons
    Replies: 509
    Last Post: 11 May 2016, 03:02 PM
  3. Replies: 4
    Last Post: 14 Feb 2013, 09:33 PM
  4. v139h Back In Stock Notifications only notify customers ONE time?
    By SRQHoyas in forum General Questions
    Replies: 0
    Last Post: 9 Jun 2012, 01:58 PM
  5. Problems with Back In Stock Notifications addon
    By dhanesh in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 21 Aug 2008, 02:26 PM

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