ovolatier
Forum Replies Created
-
Guys,
In the file infinite-scroll.php
in Function shouldLoadJavascript() {
Replace
if (is_singular()) { return false; }
by
if (is_singular()) { return true; }
Forum: Plugins
In reply to: Has anyone seen a plugin or script to integrate Shipworks?I didn’t know you need for woocommerce
I developed it only for Shopp for now, but if some people ask for it, I will develop for other WP E-commerce plugins
Forum: Plugins
In reply to: Has anyone seen a plugin or script to integrate Shipworks?Hello Bob,
What E-Commerce plugin do you have on wordpress ? I developed one to make the bridge between Shopp and Shipworks, I will do it also for other E-Commerce plugin
Let me know
OlivierI have exaclty the same problem, but for me title in the store is :
%%title%% | Panier des Sens
https://www.panierdessens.us/store/So this is worse,
I let you know if I find a solution
Thanks
OlivierForum: Plugins
In reply to: wp_nav_menu onmouseover event changing link color?You should do it with css
a { color:#999999; }
a:hover {color:#008000; }Forum: Plugins
In reply to: [WP eCommerce] [Plugin: WP e-Commerce] Unreal E-commerce pluginI am trying Shopp,
This is a little more expensive, but not buggy and you can modify everything in the design without touch the core. And if you need to add Shopp function, the documentation is better and the forum is working well too (always someone to answer to your question)
The only think a regret is the way you can add product with WP-ecommerce (with AJAX) ==> pretty cool
For the resources, i think this is the same way, Shopp need a lot of resources.
And With shopp you have a little bug when you are duplicate product, so you have to create a new one every time.
Forum: Fixing WordPress
In reply to: Navigation page with permalinkI think the problem is with the rewrite url and permalink
I try to add this function in my function.php : (https://codex.www.ads-software.com/Custom_Queries)
add_action('generate_rewrite_rules', 'geotags_add_rewrite_rules'); function geotags_add_rewrite_rules( $wp_rewrite ) { $new_rules = array( 'paged/(.+)' => 'index.php?paged=' . $wp_rewrite->preg_index(1) ); /?/? Add the new rewrite rule into the top of the global rules array $wp_rewrite->rules = $new_rules + $wp_rewrite->rules; }
But is not working neither
Any more idea ?
[No bumping. If it’s that urgent, consider hiring someone.]
Forum: Fixing WordPress
In reply to: Navigation page with permalinkNow I have 3 pages, but only the first one is working. When i click on page 2 or 3 i am redirect to page 1
Forum: Fixing WordPress
In reply to: Navigation page with permalinkForum: Fixing WordPress
In reply to: Navigation page with permalinkWhen i changed the permalinks to with a URL Friendly structure, my links are working properly, i have only a problem with the navigation page on this page : https://www.wwebsolution.com/hemisphere/?p=533
(see navigation page on the right bottom of “Travel” “1 2 >” )
So when i change the permalink for another structure (URL Friendly), the paged 2 is redirect on the page 1
Normally, i should have something like https://www.wwebsolution.com/hemisphere/epic/paged2 but something redirect on https://www.wwebsolution.com/hemisphere/epic/
I will change the permalink, you will see
Thanks
OlivierForum: Fixing WordPress
In reply to: Navigation page with permalinkI have Default https://www.wwebsolution.com/hemisphere/?p=123
But like that paged are working, but if i change the setting by “Post name”, paged are not working
If you want i can show you now ? let me know
Forum: Fixing WordPress
In reply to: Navigation page with permalinkAny idea ?