squeaky
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Payment through Authorize.net is reporting Server ErrorI think I may have found the issue, and broke all the rules for the support, sorry about that. But what i am finding, the status report is saying there is a newwer version of Authorize.net
the report
WooCommerce Authorize.net AIM Gateway: by WooThemes / SkyVerge – 3.4.4 – 3.10.0 is availablebut on the plugins screen it does not report an need to upldate
I have the same issue. I am posting here to be notified if/when it is resolved.
Forum: Themes and Templates
In reply to: [Mosalon] Can I add the footer to the landing page?I found it, in case anyone else is looking.
Customize | Landing Page | Section Ordering
I unchecked “Display subsidiary sidebar on landing page? “
Forum: Plugins
In reply to: [Review Wave - Yelp Reviews] Only one review is displayedI am experiencing the same issue. I only see one review but on yelp there are many above the 4 stars.
Any help is appreciated.
Hi Ruurd, I totally agree – that I should probably not make the fix in the plugin. Sadly I do not know how to make the change properly. Can you share the function if/when you write it? thanks
I had the same problem on my front page. see if this helps.
I found a solution – my front and test pages are both working.
make a copy of the plugin file as a backup.http://wordpress.stackexchange.com/questions/120407/how-to-fix-pagination-for-custom-loops
on this page I found the below quote:
Note: If your page is a static front page, be sure to use page instead of paged as a static front page uses page and not paged. This is what you should have for a static front page
knowing enough to be dangerous, I made the following changes to
jck-woo-shortcode-pagination.phpLine 96
Changed from $paged = get_query_var(‘paged’) ? get_query_var(‘paged’) : 1;
to:if ( is_front_page() ) { $paged = get_query_var('page') ? get_query_var('page') : 1; } else { $paged = get_query_var('paged') ? get_query_var('paged') : 1; }Also; Line 124
FROM: $paged = get_query_var(‘paged’) ? get_query_var(‘paged’) : 1;if ( is_front_page() ) { $paged = get_query_var('page') ? get_query_var('page') : 1; } else { $paged = get_query_var('paged') ? get_query_var('paged') : 1; }I am not sure if this has anything to do with the issue. But on the product details page, in the breadcrumb nav there is a Page 1 at the end of the bread crumb path.
Go to the test page.
Move to page #2
click on any of the products on page 2 and look at the breadcrumb nav, no matter what page we come from – its says Page 1 –#1 can that be removed?
Update – I figured out the blurry image issue. I forgot the image thumbnail setting in woo. I reset those and regenerated and now my images are clear – yeah!
I am using a child theme – if that may have something to do with my issues?
Thank you for your time. and the work you have done on the plugin.Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Can I change the label "Email Address:"I am so sorry – I just found it.
Forum: Themes and Templates
In reply to: [Sixteen] Mobile menu secondary nav not showingHello,
I am having the same problem. How did you resolve this issue?
Thank you for your time.It looks like you have a different mobile nav?
Forum: Plugins
In reply to: How do I change Password Protected styles?just to clarify, i only changed the word view in the above example to viewww. Only a slight change to see. for now 😉
Forum: Plugins
In reply to: [Contact Form 7] Formatting CheckboxesI came here looking for the same, try this
http://contactform7.com/custom-layout-for-checkboxes-and-radio-buttons/
Forum: Plugins
In reply to: easy-fancybox – remove close buttonI altered the plugin to include the 2 options
hideOnOverlayClick and hideOnContentClickturned them off, and it works as expected.