grayayer
Forum Replies Created
-
Forum: Plugins
In reply to: [Language Redirect] Adding cookie to make redirection once-only (have code)I’m now receiving a problem in which I realize that because the first thing that a server sees is a 302 redirect message, it’s impossible to define open graph meta-tags to post content to Facebook and have it automatically populate.
if I don’t use the store cookie method, I seem to be encountering a infinite redirect loop when just trying to go to my English site.
Forum: Plugins
In reply to: [Language Redirect] Adding cookie to make redirection once-only (have code)Adding these modifications seems to work for. Doesn’t seem like you committed those to your forked version on github though. Am I missing something?
An additional feature that would improve UX would be to display upon first redirect a message that the user has been auto redirected based on their browser language preference and provide a link to the main site if they don’t want to be on the subsite.
Forum: Reviews
In reply to: [Language Redirect] Simple but exactly what I neededYou should add this to the instructions. It’s very useful.
Forum: Plugins
In reply to: [Broadcast] Creates blank pages upon broadcastSeems to be an incompatibility with Multilingual Press Pro plugin.
The problem is that there is an uncoordinated switch_to_blog / restore_current_blog pair somewhere in that plugin that leaves Broadcast on the wrong blog by the time it is time to broadcast. I’ve informed the author of Multilingual and hopefully he can provide a patch.
@ninelives1980, it seems you’ve already gotten your styling issues worked out, but here’s some css which helped my client’s site, SavorAnnArbor.com look better when using both woocommerce and wptouch:
body.archive.woocommerce div.page-wrapper #container { padding: 10px 20px; } body.archive.woocommerce div.page-wrapper div#sidebar, body.archive.woocommerce .woocommerce-breadcrumb, body.archive.woocommerce .woocommerce-result-count, body.archive.woocommerce .woocommerce-ordering, body.single-product div.page-wrapper div#sidebar, body.single-product .woocommerce-breadcrumb, body.single-product .woocommerce-result-count, body.single-product .woocommerce-ordering { display: none; } /*PRODUCT DISPLAYS*/ .woocommerce div.product div.images, .woocommerce #content div.product div.images, .woocommerce-page div.product div.images, .woocommerce-page #content div.product div.images { float: NONE; width: 100%; } .woocommerce div.product div.summary, .woocommerce #content div.product div.summary, .woocommerce-page div.product div.summary, .woocommerce-page #content div.product div.summary { float: NONE; width: 95%; margin-Bottom: 1em; padding: 0 20px; }hope that helps.
Forum: Plugins
In reply to: [YITH Maintenance Mode] Splash page showing for logged in adminglad to be of assistance. We all have to do our part in this community 🙂
Forum: Plugins
In reply to: [YITH Maintenance Mode] Splash page showing for logged in adminyes I did. I needed to flush my DNS. Also, make sure to clear your cache and cookies.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] doesn't import due to "invalid headers"Well that did it for my testing. Even though there didn’t seem to be any difference (or spaces) in the form labels, I cut and pasted them in again from the csv, and that seems to have done the trick, though I don’t know why.
Thank you for all your assistance.
Forum: Plugins
In reply to: [WP-PJAX] Strict Standards errorThank you pekz0r. I look forward to seeing the results.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] doesn't import due to "invalid headers"I’m pretty sure this is what you’re looking for:
ID LABEL TYPE Syntax
1 Company text example: Some Entry
2 Country select example: Some Entry
3 Website website example: Some Entry
4 IDN radio example: Some Entry
5 DNSSEC radio example: Some Entry Recorded Values: Yes, No,Forum: Plugins
In reply to: [Gravity Forms Mass Import] doesn't import due to "invalid headers"I used explicitly the csv file you provided, but unfortunately I’m still getting
You have some invalid headers: Company
and that’s with the first entry of the file you gave me with the doublequotes on everything:
“Company”,”Country”,”Website”,”IDN”,”DNSSEC”
Forum: Plugins
In reply to: [Testimonials by WooThemes] Where do I find the ID?Hello kroyal777,
If ifigueras isn’t clear enough for you, you’d want to look at the “all testimonials” screen and the id should be the last column on the right. Hope that helps.Forum: Plugins
In reply to: [Testimonials by WooThemes] Text goes outside the pagehave you fixed this issue? Since I don’t see anything wrong with your page.
Forum: Plugins
In reply to: [Testimonials by WooThemes] Remove titleare you talking about the widget display, the shortcode in pages, the archive page? If you can be more specific and include links, the community will be able to help you better.
I’m using:
CANVAS 5.2.4
FRAMEWORK 5.5.5I was finding that the only way to get canvas and posts2posts to work together is to comment out the original functions in canvas/includes/theme-functions.php on line 1142.
Now it works, thanks to Jason Judge for directing us to add this code into one’s theme functions.php
add_action('init', 'my_canvas_hotfix_remove_filters', 999); function my_canvas_hotfix_remove_filters($query = NULL) { remove_filter('pre_get_posts', 'woo_exclude_categories_homepage', 10); return $query; }