Page 185 of 186 FirstFirst ... 85135175183184185186 LastLast
Results 1,841 to 1,850 of 1859
  1. #1841
    Join Date
    Mar 2011
    Location
    Pensacola, FL
    Posts
    88
    Plugin Contributions
    4

    Default Re: Wordpress On ZC [Support Thread]

    Possibly there should be a support thread specifically for WOZ sideboxes only module and/or combining it with the numinix solution.

    I recently submitted an updated version of the module, the tpl_wp_XXX pages to which are added one line that seemed to be needed to close a DIV. Maybe this is only necessary when using the numinix method.

    Code:
      $content .= '</div>';
    below

    Code:
      $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
      $content .= '<ul>'.$out.'</ul>';
    The extra-configures/wordpress_config.php file also needed to be changed. A 404 file not found error was occurring on the blog pages, which seemed to be due to something in here:
    Code:
    		define('WP_USE_THEMES', true);
    		$wp_did_header = true;
                    require_once(ABSPATH.'wp-config.php');
    It worked fine when that code was removed, but there was a sidebox error on the NON-blog pages.

    So I updated the code on the extra-configures/wordpress_config.php page to:

    Code:
    define ('ABSPATH','/path/to/my/blog/');
    
    $host = $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
    $its_blog_page = $_SERVER['SERVER_NAME'] . "/blog";
    
    if ((strpos($host, $its_blog_page) !== false) && (file_exists(ABSPATH.'wp-config.php'))){
    	$woz_install=1;
    	}else{
    		$woz_install=1;
    		define('WP_USE_THEMES', true);
    		$wp_did_header = true;
    		require_once(ABSPATH.'wp-config.php'); 
    	}
    which simply checks the current URL to see if it contains the numinix-style path to the blog (mydomain.com/blog) and loads ONLY the $woz_install=1; line, otherwise for any other page it loads also the WP THEME, wp Header and WP config lines.

    I imagine there as a much more elegant way to do this and I would love to see if if anyone's inspired to share. Otherwise, hope this is useful.
    Last edited by mutinyzoo; 18 Nov 2013 at 10:36 PM.

  2. #1842
    Join Date
    Mar 2011
    Location
    Pensacola, FL
    Posts
    88
    Plugin Contributions
    4

    Default Re: Wordpress On ZC [Support Thread]

    Also regarding the wonderful Numinix integration tutorial/method;

    I’ve been using this method on a couple of blogs for years (thank you very much), but there is an issue with the Twenty Thirteen theme: PHP Warning:

    Code:
    call_user_func_array() expects parameter 1 to be a valid callback, function ‘stats_template_redirect’ not found or invalid function name in /path/to/wp-includes/plugin.php on line 406.
    it occurs when i add any widget into the seconday widget area.

    Following is the code on the numinix wordpress_page.php file where the stats_template_redirect call occurs and where I'm betting the answer may be found.

    Code:
      if ($_GET['main_page'] == 'blog') {
        define('WP_USE_THEMES', false);
        require('steel/wp-blog-header.php'); // edit this with relative path to wordpress from store root
        add_action( 'wp_footer', 'stats_template_redirect', 1 );
      }
    Any insight quite welcome. In the meantime using the twenty thirteen theme without secondary widget area (which takes up right column space anyway)

  3. #1843
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On ZC [Support Thread]

    Nice!!! I haven't looked at the WOZ Sidebox Only Edition module in years because I use different methods now for "linking" WordPress and Zen Cart which use better, less troublesome methods of linking these two frameworks. (configurable WP4Zen sideboxes for Zen Cart, integrated template/themes, and a plugin for WP which allows me to display Zen Cart content --including the shopping cart-- inside WordPress) I've submitted two of these integrated sites to the Zen Cart showcase.. (See http://eyeitalia(dot)com and http://laserdiscvault(dot)com)

    The WOZ Sidebox Only Edition was NEVER tested --or specifically meant to work-- with the Numinix embedding solution. It was submitted as a standalone solution for displaying WordPress bog content in Zen Cart. After struggling with WOZ, I came to the conclusion that blog embedding was mostly unnecessary for uniting WordPress with Zen Cart.

    So it would appear that your changes ARE required to use the WOZ Sidebox Only Edition with the Numinix blog embedding solution.. Given the changes you made (and submitted) you might want to create a separate support thread for the WOZ Sideboxes Only module.. You might also want to test that WOZ Sidebox Only Edition still works without REQUIRING the Numinix blog embedding solution.. WOZ Sidebox Only Edition was meant to work WITHOUT an embedded blog..

    I would also suggest that the sideboxes need a looksee. Given the many changes in WordPress since I submitted the WOZ Sideboxes Only edition, some of the sideboxes may be using outdated code that is no longer supported in WordPress and modern WordPress themes..

    Quote Originally Posted by mutinyzoo View Post
    Possibly there should be a support thread specifically for WOZ sideboxes only module and/or combining it with the numinix solution.

    I recently submitted an updated version of the module, the tpl_wp_XXX pages to which are added one line that seemed to be needed to close a DIV. Maybe this is only necessary when using the numinix method.

    Code:
      $content .= '</div>';
    below

    Code:
      $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">';
      $content .= '<ul>'.$out.'</ul>';
    The extra-configures/wordpress_config.php file also needed to be changed. A 404 file not found error was occurring on the blog pages, which seemed to be due to something in here:
    Code:
            define('WP_USE_THEMES', true);
            $wp_did_header = true;
                    require_once(ABSPATH.'wp-config.php');
    It worked fine when that code was removed, but there was a sidebox error on the NON-blog pages.

    So I updated the code on the extra-configures/wordpress_config.php page to:

    Code:
    define ('ABSPATH','/path/to/my/blog/');
    
    $host = $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
    $its_blog_page = $_SERVER['SERVER_NAME'] . "/blog";
    
    if ((strpos($host, $its_blog_page) !== false) && (file_exists(ABSPATH.'wp-config.php'))){
        $woz_install=1;
        }else{
            $woz_install=1;
            define('WP_USE_THEMES', true);
            $wp_did_header = true;
            require_once(ABSPATH.'wp-config.php'); 
        }
    which simply checks the current URL to see if it contains the numinix-style path to the blog (mydomain.com/blog) and loads ONLY the $woz_install=1; line, otherwise for any other page it loads also the WP THEME, wp Header and WP config lines.

    I imagine there as a much more elegant way to do this and I would love to see if if anyone's inspired to share. Otherwise, hope this is useful.
    Last edited by DivaVocals; 18 Nov 2013 at 11:10 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  4. #1844
    Join Date
    Mar 2011
    Location
    Pensacola, FL
    Posts
    88
    Plugin Contributions
    4

    Default Re: Wordpress On ZC [Support Thread]

    Quote Originally Posted by DivaVocals View Post
    Nice!!! I haven't looked at the WOZ Sidebox Only Edition module in years because I use different methods now for "linking" WordPress and Zen Cart which use better, less troublesome methods of linking these two frameworks. (configurable WP4Zen sideboxes for Zen Cart, integrated template/themes, and a plugin for WP which allows me to display Zen Cart content --including the shopping cart-- inside WordPress) I've submitted two of these integrated sites to the Zen Cart showcase.. (See http://eyeitalia(dot)com and http://laserdiscvault(dot)com)
    Nice sites.
    Quote Originally Posted by DivaVocals View Post
    The WOZ Sidebox Only Edition was NEVER tested --or specifically meant to work-- with the Numinix embedding solution. It was submitted as a standalone solution for displaying WordPress bog content in Zen Cart. After struggling with WOZ, I came to the conclusion that blog embedding was mostly unnecessary for uniting WordPress with Zen Cart.
    Are the two sites referenced above NOT embedding WP, but merely duplicating styling within each platform, then?

    Quote Originally Posted by DivaVocals View Post
    So it would appear that your changes ARE required to use the WOZ Sidebox Only Edition with the Numinix blog embedding solution.. Given the changes you made (and submitted) you might want to create a separate support thread for the WOZ Sideboxes Only module.. You might also want to test that WOZ Sidebox Only Edition still works without REQUIRING the Numinix blog embedding solution.. WOZ Sidebox Only Edition was meant to work WITHOUT an embedded blog.
    The changes to the wordpress_config file are not in the sideboxes only version I submitted, which is why I posted the changes here for anyone who is using the numinix method and since they only deal with the sideboxes themselves which are outside of the scope of the numinix changes, I imagine there would not be any conflict.

    Quote Originally Posted by DivaVocals View Post
    I would also suggest that the sideboxes need a looksee. Given the many changes in WordPress since I submitted the WOZ Sideboxes Only edition, some of the sideboxes may be using outdated code that is no longer supported in WordPress and modern WordPress themes.
    I tested most of them and they worked. The one called tpl_wp_sidebar didn't seem to do anything and I'm not sure what it was supposed to do.

    I'm questioning whether or not this method will be useful to anyone if WP4Zen and/or other more contemporary methods serves the same function.

  5. #1845
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On ZC [Support Thread]

    Quote Originally Posted by mutinyzoo View Post
    Nice sites.
    Are the two sites referenced above NOT embedding WP, but merely duplicating styling within each platform, then?
    Not duplicating the way you are thinking..

    After spending (wasting) a LOT of time with embedding blogs inside Zen Cart, I realized that many folks walked down this road to avoid having to create a matching WordPress theme. There was this perception that creating a matching WordPress theme was "hard" or "too much work". I believed this too, but I eventually realized that blog embedding JUST to avoid having to create a matching theme seemed like a lot of work for very little gain.. I now have a few theme generator tools I use for WordPress that makes the work of creating a matching WordPress theme easy as pie for me.. (the Laserdisc Vault site is an example of that in action) However, I realized that anytime I made look/feel changes I had to make them in both WordPress theme and the Zen Cart template.. While this wasn't "hard", it was labor intensive making sure every detail was consistent between the two frameworks. So I began to look for a way to cut down on the work required to make WordPress and Zen Cart maintain the same look/feel..

    WordPress has always supported calling it's codex and displaying it outside of WordPress (which is how the various blog embedding solutions work). To apply this to the Zen Cart template, I merely created a Zen Cart template which makes calls to much of the WordPress theme. So on the EyeItalia site, WordPress and Zen Cart are "sharing" a theme/template. There are some elements that I do have to re-create in the Zen Cart template to keep things consistent, but they are minor in the scheme of things.. For example the sidebox and centerboxes styling mimics the widgets styling in WordPress, but those styles are maintained in the Zen art template stylesheet.. But the MAJOR look/feel is driven by the WordPress theme.. This minimizes the number of changes I need to make in the Zen Cart theme to keep the look/feel of WordPress and Zen Cart in synch.

    After that I have WordPress sideboxes that I use to display WordPress content inside Zen Cart and Zen Cart widgets to display Zen Cart content in WordPress.. No "embedding" needed, and I can still effectively tie WordPress to Zen Cart..

    Quote Originally Posted by mutinyzoo View Post
    The changes to the wordpress_config file are not in the sideboxes only version I submitted, which is why I posted the changes here for anyone who is using the numinix method and since they only deal with the sideboxes themselves which are outside of the scope of the numinix changes, I imagine there would not be any conflict.
    Great.. that was my concern.. I understand why this change needs to be made if the WOZ Sideboxes Only Edition is being used with the Numinix solution as it would duplicate calls to the WordPress codex already made in the Numnix embedding solution..

    There is a Numinix Blog Embedding support thread here on the Zen Cart forum.. May I suggest posting your code/changes there as well..

    Quote Originally Posted by mutinyzoo View Post
    I tested most of them and they worked. The one called tpl_wp_sidebar didn't seem to do anything and I'm not sure what it was supposed to do.
    The tpl_wp_sidebar is based on outdated WordPress theming methods.. In older WordPress themes where there was only "sidebar1" and "sidebar2" this sidebox would display the contents of both side bars in one sidebox. I have two clients who have older WordPress themes who can still use this sidebox.. (See this site: http://www(dot)lanikshair(dot)com/in...=index&cPath=0 -- except for the currency sidebox, the rest of the right column is the sidebar sidebox)

    Modern WordPress themes can display widgets ANYWHERE so the tpl_wp_sidebar would have to be re-written to accommodate this, and perhaps allow one to chose which sidebars to display..

    The blogroll sidebox is also probably outdated as there is no more blogroll in the WordPress core code anymore..

    Quote Originally Posted by mutinyzoo View Post
    I'm questioning whether or not this method will be useful to anyone if WP4Zen and/or other more contemporary methods serves the same function.
    I think the more contemporary functions I am now using are a better long term solution and they certainly solve the problem with regards to "reciprocity".. By reciprocity, I mean REALLY improving upon how to make WordPress a more effective means to drive customers to the Zen Cart store.. What better way to do that that to make sure that your Zen Cart product content is VERY visible in your WordPress blog.. Blog embedding is nice, but in the end there are more effective ways to integrate WordPress and Zen Cart in my opinion. I took a holistic approach to how that integration is done versus the traditional, yet sadly one sided means of accomplishing WordPress/Zen Cart integration..
    Last edited by DivaVocals; 19 Nov 2013 at 04:43 AM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  6. #1846
    Join Date
    Mar 2011
    Location
    Pensacola, FL
    Posts
    88
    Plugin Contributions
    4

    Default Re: Wordpress On ZC [Support Thread]

    Quote Originally Posted by DivaVocals View Post
    ...avoid having to create a matching WordPress theme.
    Are there two distinct "header" pages, depending on whether the user is viewing blog or ZC pages?

    Quote Originally Posted by DivaVocals View Post
    I now have a few theme generator tools I use for WordPress
    I'm curious what you'd recommend. I've mostly been making very simple child pages from WP twenty-ten, eleven, twelve and now thirteen.

    Quote Originally Posted by DivaVocals View Post
    I merely created a Zen Cart template which makes calls to much of the WordPress theme.
    Oh is that all. : ) Any good tutorials on this?

    Quote Originally Posted by DivaVocals View Post
    So on the EyeItalia site, WordPress and Zen Cart are "sharing" a theme/template. But the MAJOR look/feel is driven by the WordPress theme.. This minimizes the number of changes I need to make in the Zen Cart theme to keep the look/feel of WordPress and Zen Cart in synch.
    Meaning pulling styling from the same stylesheet? Would this be the WP style.css, predominantly?


    Quote Originally Posted by DivaVocals View Post
    There is a Numinix Blog Embedding support thread here on the Zen Cart forum.. May I suggest posting your code/changes there as well..
    Done and thank you.

    Quote Originally Posted by DivaVocals View Post
    By reciprocity, I mean REALLY improving upon how to make WordPress a more effective means to drive customers to the Zen Cart store..
    Good word, reciprocity. In the end, the idea is to facilitate the users fulfillment of their needs based on what we can offer, possibly even cultivating some needs in them and their community in the process.

  7. #1847
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On ZC [Support Thread]

    Quote Originally Posted by mutinyzoo View Post
    Are there two distinct "header" pages, depending on whether the user is viewing blog or ZC pages?
    There has to be since WordPress and Zen Cart still have distinct templating/theming systems.. Since WordPress has always supported calling/displaying WordPress content outside of WordPress it's just a matter of making calls to specific header elements from WordPress in the Zen Cart header..

    Quote Originally Posted by mutinyzoo View Post
    Oh is that all. : ) Any good tutorials on this?
    Not really.. I did a LOT of research on the topic of WordPress Zen Cart integration to come to the path I've moved down on the topic.. Tried a LOT of stuff.. some successful.. some not so much.. I'll see if I can find some of the articles I used in my travels and share them.. BUt if you are interested search "integrate WordPress Zen Cart" should get you to some of the stuff I read..

    The challenge is that every WordPress theme has some common elements, but how each theme uses these elements is different enough that unless your theme uses the EXACTLY same underlying layout structure there is no "good" means to turn this into any kind of consistent process which could be used to create a distributable "WordPress wrapped" Zen Cart template.. To successfully build a "WordPress wrapped" Zen Cart template, you really have to get VERY familiar with WordPress' basic theme structure and WordPress' codex..

    That said I suppose one could build a "WordPress wrapped" Zen Cart template based on the DEFAULT WordPress themes, but the minute someone spins off a child theme based on Twenty Ten, Twenty Eleven, Twenty Twelve, or Twenty Thirteen, then all bets are off because the Zen Cart template would need to be modified a bit to correctly call the child theme, and going back to what I originally said, "To successfully build a "WordPress wrapped" Zen Cart template, you really have to get VERY familiar with WordPress' basic theme structure and WordPress' codex"..

    I'm not sure how to write up anything resembling some kind of step by step tutorial to cover what needs to be done. It's not for the faint of heart, and certainly not something most novice shopowners would be able to just jump into.. If you want MORE info, the Catalyst forum has some of my earlier ramblings on the topic.. Here's one of my early posts.. http://catalysttheme.com/forum/showt...hlight=zencart There are more if you search for my username..

    Quote Originally Posted by mutinyzoo View Post
    I'm curious what you'd recommend. I've mostly been making very simple child pages from WP twenty-ten, eleven, twelve and now thirteen.
    Artisteer is a great tool for quickly churning out WordPress templates among other frameworks.. It's what I used to build the Laserdisc Vault site's matching WordPress theme. I have been using it since v1.0 and have always found it a useful tool, but the latest versions a MILES from the originalin terms of functionality.. It's a pretty useful tool, but you do need to be familiar with the target framework's underlying theme/template structure to really use the tool and the output correctly..

    But lately I am a BIGGER fan of WordPress theme frameworks.. I chose Catalyst, and they have now merged with Genesis which is the granddaddy of WordPress theme frameworks.. There are others (such as Headway) but now that Genesis and Catalyst are united, IMHO this is the CADILLAC/GOLD STANDARD of theme frameworks and very well worth the investment..

    I understand why folks like these embedding solutions, but IMHO, using an embedding solutions as a means to integrate frameworks like Zen Cart and WordPress are a waste of time and they make integration work overly complicated because they seek to solve the WRONG problem. At the end of the day what my clients REALLY needed was the ability to display Zen Cart content in their WordPress site, and vice versa without all of the headaches that go into maintaining an embedded solution.. It takes LESS time for me to create a WordPress theme and matching Zen Cart template than it does to deal with every single issue that rears it’s ugly head to make sure my embedding solution doesn’t wreak havoc on my site because it doesn’t play nice with one of my plugins/modules.. Plus, there are plenty of NICE template options out there -ALA Picaflor Azul and Brandon Turpin- and WordPress themes and theme generators that makes all the fuss over themeing and templating a NON-ISSUE now..

    Quote Originally Posted by mutinyzoo View Post
    Meaning pulling styling from the same stylesheet? Would this be the WP style.css, predominantly?
    Yes that's exactly what I mean.. the main WordPress stylesheet drives the majority of the look and feel for the EyeItalia site (and my own site).. So I let the WordPress stylesheet do most of the heavy lifting, and have removed any "common" styles from the Zen Cart stylesheet (body, h1, p, etc). The ONLY thing the Zen Cart stylesheet controls now is any Zen Cart specific classes and IDs which DO NOT need to be maintained in the WordPress stylesheet..

    Quote Originally Posted by mutinyzoo View Post
    Good word, reciprocity. In the end, the idea is to facilitate the users fulfillment of their needs based on what we can offer, possibly even cultivating some needs in them and their community in the process.
    This is true.. However, by reciprocity I actually mean that integration should be reciprocal, and most embedding solutions are not reciprocal.. (being able to display content in BOTH WordPress as well as Zen Cart) WOZ and other embedding solutions only address ONE SIDE of the integration equation in an attempt to solve the wrong integration issue (common themeing/templating)..

    Unlike embedding plugins/modules, the methods I now use allows my clients to use the FULL power of WordPress and the FULL power of Zen Cart for their sites. This means that they will be able to use any plugin/module for Zen Cart or WordPress without limits or conflicts (like having to implement some gnarly code just to get your Zen Cart module to work inside WordPress or vice versa). Another example of where embedding can be problematic is the WP Online Store plugin for WordPress. Like WOZ and the Numinix solution embeds WordPress inside Zen Cart, WP Online Store embeds osCommerce inside WordPress..

    The support threads SAY you can install any osCommerce module in your embedded osCommerce shop.. and yes that is true.. BUT a closer read reveals that the WHOLE truth of the matter is you often have to have some knowledge of coding to make it work and an update to WordPress or the osCommerce plugin could easily KILL your osCommerce module. This seems like a lot of work JUST to avoid creating matching themes/templates. Not to mention the risk of lost sales because your embedding solution is interfering with site functionality..

    My clients know that they don’t need the WHOLE store loading inside WordPress, but they do need their PRODUCTS displayed.. They don’t need their whole BLOG loading inside of ZenCart, but they DO need links to their blog articles/pages made available inside their stores.
    Last edited by DivaVocals; 19 Nov 2013 at 09:05 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  8. #1848
    Join Date
    Mar 2011
    Location
    Pensacola, FL
    Posts
    88
    Plugin Contributions
    4

    Default Re: Wordpress On ZC [Support Thread]

    This dialog has given me a good deal of food for thought, DivaVocals. Thank you!

    I guess the basic description of your approach would be:

    1. Two separate platforms with matching design
    2. Each enabled (by sharing DB permissions and some functions) to pull data from and link to sections of the other.

    Question - do your plugins enable the user and/or admin to have a single login?

  9. #1849
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Wordpress On ZC [Support Thread]

    Quote Originally Posted by mutinyzoo View Post
    This dialog has given me a good deal of food for thought, DivaVocals. Thank you!

    I guess the basic description of your approach would be:

    1. Two separate platforms with matching design
    2. Each enabled (by sharing DB permissions and some functions) to pull data from and link to sections of the other.
    More or less yes.. I don't seek to "merge" Zen Cart and WordPress, I seek only to be able to display Zen Cart product related content in WordPress, and WordPress blog content in Zen Cart.. I don't need for these two to "merge/embed" to make that happen..

    Design/layout is NOT a function of integration.. So I don't need to "merge" just to simplify design/layout.

    Quote Originally Posted by mutinyzoo View Post
    Question - do your plugins enable the user and/or admin to have a single login?
    My plugins are commercial and as this discussion is a LOT off topic for the WOZ support thread, and it is a violation of forum rules for me to get into specifics, why don't you go to my site and drop me a line and I can answer your questions offline..
    Last edited by DivaVocals; 6 Dec 2013 at 03:34 AM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  10. #1850
    Join Date
    Nov 2013
    Location
    New York
    Posts
    30
    Plugin Contributions
    0

    Default Re: Wordpress On ZC [Support Thread]

    I had integrated wordpress into zen-cart, however, for some reason, wordpress sent 404 error to all zen-cart links except the homepage although all the links are valid.
    my zen-cart is installed in the root folder while wordpress in /blog/ folder. I'd like to disable the wrong response code sent from wordpress. Is there anyone here having the same problem and find a solution?

 

 

Similar Threads

  1. EasyPopulate 4.0 Support Thread
    By chadderuski in forum Addon Admin Tools
    Replies: 3630
    Last Post: 9 Aug 2024, 08:54 PM
  2. Hebrew Support - latest release [Support Thread]
    By eranariel in forum Addon Language Packs
    Replies: 19
    Last Post: 23 Jan 2023, 08:04 AM
  3. WordPress® for Zen Cart® (wp4zen) [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 107
    Last Post: 13 Jan 2019, 12:32 PM
  4. PurpleShades Support Thread
    By kobra in forum Addon Templates
    Replies: 122
    Last Post: 18 May 2011, 07:18 PM
  5. ZJ Black 2 support thread
    By Liamv in forum Addon Templates
    Replies: 1
    Last Post: 15 Feb 2010, 02:53 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