mkelleyici
Forum Replies Created
-
Forum: Plugins
In reply to: [Flamingo] Flamingo ‘Channel’ columnAny help with this?
Forum: Plugins
In reply to: [Flamingo] Flamingo ‘Channel’ columnHi,
I’m having this issue as well. I have made a lot of contact forms in contact form 7 by duplicating a form and then changing the name and information. Flamingo’s Channel list does not update the names when the inbound messages come in.
For example I created my Subscribe form by duplicating my Contact Form. In Flamingo, when I make a submission on my Subscribe form, it comes up as Contact Form.
Is there some way we can fix this?
Thank you.
To be able to use the plugins “BJ Lazy Load” along with “Contact Form 7 – recaptcha v2” I added a class name under Setting > “BJ Lazy Load” > Skip images with classes. In my case I used class name “no-lazy-load.”
Then, using Filezilla, I opened the plugin folder for “Contact Form 7 – recaptcha v2” and in the file recaptcha-v2.php found the iframe surrounding the offending textarea id=”g-recaptcha-response” and added class = “no-lazy-load” to that particular iframe.
Example below:
<iframe class=”no-lazy-load” src=”<?php echo esc_url( $url ); ?>” frameborder=”0″ scrolling=”no” style=”width: 302px; height:422px; border-style: none;”></iframe>Now all is working correctly and I have the ability to use both plugins.
Forum: Plugins
In reply to: [Posts in Page] Pagination issues continue…Hi, thanks for posting this follow-up thread as well as the original one.
I followed your directions and changed line 61 in class-page-posts.php from
$page_url = home_url( '/' . $wp_query->post->post_name . '/' );
to
$page_url = home_url( '/' . get_page_uri( $wp_query->post->ID ) . '/' );However, I changed it within the plugin folder itself. When I try to copy the file and place in my child theme, no arrangement of the placement of the file, such as adding a plugins folder > posts-in-page > includes or just posts-in-page > includes or just includes or even just the file itself, deems the same results as changing the file in the original plugin folder directly.
Any suggestions?
Thanks in advance.
Forum: Plugins
In reply to: [WP Responsive Menu] WRM 3.0 – Header hidden on desktop browserI’m having the same issue.
I have the correct class name of my main desktop menu in “Elements to hide on mobile” because of course I want it to disappear when swapped to mobile. When I check the site on mobile, everything is great, however on the desktop my main menu disappears. When I removed the class name from “Elements to hide on mobile” my main desktop menu is visible in both desktop and mobile views.