QuestionBoy
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Add to cart refreshing page back at the topI was hoping to remain on the current page, not take them to a separate one.
Forum: Plugins
In reply to: [WordPress Simple Shopping Cart] Add to cart refreshing page back at the topPerhaps a way of specifying an anchor to goto on refresh?
Solved.
I FTPed into the webserver, deleted the plugin folder and the performed a fresh install. Luckly for me, my galleries and images all appear to be intact!!!
I tried merely installing the new version, since the prior version appears to be gone and receive and error: “Destination folder already exists. /wp-content/plugins/nextgen-gallery/
Plugin install failed.”
Anyone know how to get things back in order at this point?
Further testing sadly revealed that the HTML markup does not validate properly with W3C standards (https://validator.w3.org/). Doesn’t even come close to passing with more than 200+ errors on a simple form!
Forum: Plugins
In reply to: qTranslate with Smooth SliderI found a very odd work around. I am confused because it works seamlessly for the $post_title but then requires a workaround for the $slider_excerpt?
What I did was in the Smooth Slider j.php files (around line 173) I wrapped the textual variables with the qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage()
so $post_title became qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($post_title)
same for $slider_excerpt
Now this change made the titles works just fine, but for some reason the excerpt themselves still displayed each language concatenated. to solve this last delema, I merely added the language shortcode to each post text.
So I start every english post with [:en] and every french post with [:fr]
And voila, it works. I still am hoping to remedy the problem so I don’t need this last step and would love it if anyone can make any suggestions.
The following has resolve my problem for anyone else faced with the same problem. In your db admin panel, you need to run the following SQL statements:
UPDATE wp_posts SET ping_status=’closed’ WHERE post_status = ‘publish’ AND post_type = ‘post’;
UPDATE wp_posts SET ping_status=’closed’ WHERE post_status = ‘publish’ AND post_type = ‘page’;Solved it.
Removed the
php_flag magic_quotes_gpc onfrom the secondary .htaccess file.