squeaky
Forum Replies Created
-
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.https://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
https://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.
Any solution to this? I am experiencing the same problem on a windows server. IUSR has full access to the captcha directory.
I was able to figure out what I needed – here is how I did it.
Takayuki Miyoshi – thank you for a great plugin, and explaining about the form being reset. It solved a mystery for me.Forum: Plugins
In reply to: [CONTACT FORM 7]: How to pass data to one CF7 field to another CF7 fieldHi Jasi-au,
Thanks for the reply and info.
My situation was a bit different, but similar. I used the same plugins.I have 2 forms, the first form is a subset of the 2nd form.
My user submits form 1(name,email,phone) and is redirected to form 2 with many more questions and the same fields from form 1. Form 2 is now populated with the fields name,email,phone from form 1.
Here is what I did, perhaps this will help someone else.
-
I read a forum post by the developer that mentioned how the form is reset before redirecting. He posted code to change that.
I updated the script.js file to alter the reset.see this posting: https://www.ads-software.com/support/topic/plugin-contact-form-7-conditional-redirect?replies=15 - I added my redirect into additional settings on form #1
on_sent_ok: "location = '/my-second-form?phone='+jQuery('#phone').val()+'&first-name='+jQuery('#fname').val()+'&last-name='+jQuery('#lname').val()+'&email='+jQuery('#email').val();"
- On form2 used dynamic text extension for the fields I needed to populate.
[dynamictext* first-name id:first-name "CF7_GET key='first-name'"]
https://www.ads-software.com/extend/plugins/contact-form-7-dynamic-text-extension/
I am very new to working with WP, so it took me a while to figure it out. I hope my posting helps another – thanks again.
-
I read a forum post by the developer that mentioned how the form is reset before redirecting. He posted code to change that.