pracko
Forum Replies Created
-
I was having the same problem until… I realized that my browser’s AdBlock Plus ad blocker was turned on for my site. I disabled ABP for the entire site, and voila! maps are now working.
Forum: Plugins
In reply to: [Contact Form 7] on_sent_ok Is Deprecated replacement optionsI would like to know the same thing as I’m using re-directs after form submission for a number of different forms.
Also, how do we construct the code above for multiple different CF forms? I guess we’d use an elseif statement for each additional form but I’m note sure what the code should look like for that.
@rrosenthal, yes, that is correct. However, as I mentioned in my OP, anyone can share the URL to the success/thank you page which defeats the protection on the resulting page. This is why I was seeking to embed the [complete_goal NNN] shortcode within the Mautic success message instead as that can’t be accessed without entering an email address first.
Hi Richard, sorry for my lack of follow-up. I had client projects and family stuff to deal with. I’ll see if I can’t get some info from the Mautic community on getting the shortcode to work properly in form success messages, try it out, and post my finding here. Cheers.
So I manually pasted Mautic’s html form code into the before Goal (and also added the form’s required script into <head> of my page). That didn’t make a difference. The shortcode is still appearing as visible text above the form’s first name field as the ‘Success’ message. Looking at the page source code, it seems the shortcode/success message is being embedded within a div within the Mautic <form>. This is probably why the shortcode is being rendered as text rather than functioning as a shortcode (which should be invisible to the site visitor). Any other ideas?
Good suggestion Richard. I was hoping that would work, but what happens is that my [complete_goal NNN] is inserted at the top of the form (as a visible success message) upon form submit and no re-direction to the locked page takes place.
I am using the Mautic plugin to insert the form as a shortcode in the Before section of the Goal. Perhaps I should try manually pasting the Mautic form code instead. I’ll report back.
Forum: Plugins
In reply to: [WP Show Posts] Posts per Page setting not being honored by Image PostsWell, I made that one sticky post not sticky and now everything works fine.
Forum: Fixing WordPress
In reply to: Error: Line 151 Error _ Can’t log inI also want to confirm this is happening with a client’s GoDaddy Managed WP site. However, the errors are very intermittent and not easily replicable and I don’t have trouble logging into the dashboard.
I’ve already recommend that my client contact GoDaddy for support on this.
Forum: Plugins
In reply to: [Simple CSS] How do we use this with a child theme?I didn’t use the customizer for that one particular font because it’s applied to a specific class rather than all headings or body text.
Thanks again Tom. You’re da bomb.
Forum: Plugins
In reply to: [Simple CSS] How do we use this with a child theme?Yeah, all fine with just the GP parent theme.
Then I remembered this:
@import 'https://fonts.googleapis.com/css?family=Tangerine';
was at the top of my Simple CSS stylesheetI’m wondering if this is causing a conflict?
Nevertheless, I got rid of the child theme I hand-made and used the GeneratePress child theme sample I found on the GP website instead. That works fine.
I’m thinking that the @import of that font stylesheet is what was causing the problem.
Forum: Plugins
In reply to: [Simple CSS] How do we use this with a child theme?Well, I’d like to use the plugin because the CSS editor looks so damn nice :D.
However, I’m trying to activite the child theme now and the site’s not working. My database ends up setting the wp-options table for theme to generatepress, but the stylesheet to generatepress-child. Hence, I can’t load up my site or dashboard. So I have to reset the theme via the database (setting both theme and stylesheet back to ‘generatepress’) to get the site working properly again.
Have you tried the plugin with a GeneratePress child theme and had this happen, Tom?
Paul
Forum: Plugins
In reply to: [Contact Form 7] Jumping to top of pageTakayuki,
The issue seems to have been resolved. Both rurban23 and I are using the same theme along with the Lightweight Grid Columns plugin which is also by GeneratePress. In the support forum there, Tom the developer confirmed the problem and is pushing the fix, which should be in the WP.org plugin repository soon. In the meantime, he says a fixed version is available on Github.
Link to the thread for anyone who needs it:
https://generatepress.com/forums/topic/theme-contact-form-7-jump-to-top-of-page-when-hovering-submit/#post-232792Paul
Forum: Plugins
In reply to: [Contact Form 7] Jumping to top of pageTakayuki,
I changed the theme from GeneratePress to 2015 just to test and the jumping does not happen. But like rurban23 said, we don’t want to switch themes.
What about the GeneratePress theme do you think is making the jumping happen? CSS maybe?
Paul
Forum: Plugins
In reply to: [Yoast SEO] property="og:type" content="article" on CategoryThis is what I found more recently on the Yoast website. I’ve also modified it so that pages are properly set to og:type website, whereas posts are proerly set to og:type article. Using is_singular as in the prior comment would set both posts AND pages as og:type article which is not what I wanted for my purposes. Modify accordingly is you so choose.
function yoast_change_opengraph_type( $type ) { if ( is_front_page() || is_home() || is_page() ) return 'website'; elseif ( is_single() || is_category() ) return 'article'; else return 'object'; } add_filter( 'wpseo_opengraph_type', 'yoast_change_opengraph_type' );
Forum: Plugins
In reply to: [Markup (JSON-LD) structured in schema.org] Local BusinessMarkupI assume ‘Top Page’ adds the schema markup to the Home page. And ‘Fixed Page’ adds the schema markup to one page that is user-specified. Is that correct, miiitaka?