Forum Replies Created
-
AuthorPosts
-
amin007Participant
The video tutorial on the following page should help:
amin007ParticipantWhat does the JS error say? I couldn’t load that page for some reason when I go to the above URL you mentioned it just loads forever.
Now to answer your original question… you can do the following to tell eStore to not load the JQuery libraries on a particular page. The following function in “wp_eStore.php” file loads the JQuery libraries in eStore:
wp_eStore_load_libraries
You could theoretically add code like the following in that function to stop eStore from loading the jquery libraries if it is a particular URL:
if(digi_cart_current_page_url()=="http://www.der-prinz.com/support-forum")
{
//do not load the libraries on this page
return;
}This code will need to be the first thing inside this function.
amin007ParticipantYes you can make a copy of the template then hardcode a different product ID in that template that you copied.
amin007ParticipantThe one with the add to cart one is a different shortcode. I haven’t added this option in that shortcode yet. I will do it later.
amin007ParticipantCan you post details of a test user so I can try to log in and checkout what I see as a member?
amin007ParticipantThe product and customer related data is kept in the eStore tables that the plugin creates when you first install it. As long as you keep those tables there the data should be safe. The settings data is stored inside WordPress’s options database table so if you wipe out that table then the settings will get reset.
amin007ParticipantWhen I go to the site that you posted I only see an “Under construction” message. How can I view the site in my browser so I can try to find out where the problem might be coming from.
amin007ParticipantAt the moment yes but I am going to add a settings option for this feature. When I do that you will just be able to enable this by checking a checkbox in the settings menu of eStore.
amin007ParticipantDo you have any caching plugin?
amin007ParticipantI have added another parameter for the search shortcode. You can now use the following to make it search the categories table as well as the products table:
[wp_eStore_product_search search_category=1]
You will need to get the updated version of the extra shortcode plugin from here:
amin007ParticipantThank you. I can’t see the conflict on my test server for this version. I will send you an email to get site access so I can check it out.
amin007ParticipantIf you open the “shortcode_include.php” file and search for the following line of code you see how extra shortcode plugin calls the player:
$output .= $AudioPlayer->getPlayer($source, $playerOptions, "");
The $playerOptions array can take a few options. You should be able to read up the documentation for that audio player plugin and see what options you can specify in that array (I don’t know much about that plugin but I have a feeling you can specify the title parameter in that array).
amin007ParticipantWe need details from you before we can give you a hand. It doesn’t look like you have read any of these threads which explain what details you can give us so we can help you identify the issue as soon as we can:
– https://support.tipsandtricks-hq.com/forums/topic/forum-rules
– https://support.tipsandtricks-hq.com/forums/topic/how-to-get-help-please-read
A link to your products page and a few other details (explained in the above posts) will help.
amin007ParticipantYou can’t disable loading of eStore on specific pages. The proper way to optimize the script loading time is to combine all scripts on the page (there are plugins that can do these for you). These posts have more details:
Speed suggestion – Combine all the javascript files in the plugin
https://support.tipsandtricks-hq.com/forums/topic/stop-unnecessary-js-and-css-files-from-loading
amin007ParticipantThis can happen if you have some HTML errors on your web page which have messed up the divs (for example, you didn’t close out a div). First you need to identify if this has been introduced in your theme. This test should help you identify that:
https://support.tipsandtricks-hq.com/forums/topic/test-to-identy-a-conflicting-theme-or-plugin
If the issue is not in the themes header then it can be some HTML code that you have entered in that page or in the product description. Validating the page with the w3validator should reveal the isssue:
-
AuthorPosts