untitledcreative
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Single row layout messed up after update to 5.7This fix is much like the remove wpautop.
Fortunately, it is easy to turn it off, add the following line to your wp-config.php file: define( 'WPCF7_AUTOP', false ); You can also use a filter in your theme (functions.php) or your plugin: add_filter('wpcf7_autop_or_not', '__return_false'); The last snippet does the some but it attach the code to the theme and not to the WP instance.
Forum: Plugins
In reply to: [Contact Form 7] Between columns and text are not alignedHello,
I am also a long time Contact form 7 user. I have dozens and dozens of websites that uses this plug in.
I found a fix on google.
wp_config.php “define( ‘WPCF7_AUTOP’, false );”
functions.php “add_filter(‘wpcf7_autop_or_not’, ‘__return_false’);”Both looks like are working. But I have DOZENS of websites that I need to update with this code snippet. It looks like the most recent update has added the P tag in places where it is not needed.
Please update your plugin.
Forum: Fixing WordPress
In reply to: Nav not working on internal static pages in WordPressIf I put
<a href="/#about" title="About">About Us</a>
somewhere in the body paragraph, it will do what I want it to.- This reply was modified 7 years, 7 months ago by untitledcreative.
Forum: Fixing WordPress
In reply to: Nav not working on internal static pages in WordPressThanks for your reply Jacob. In my code, I am using “../#about” Which should return to the previous page and jump to that ID. I’ve done it on other websites. If you open up your inspector, and change the #about link to something like https://www.google.com as the href, it does not even work. But when you click on the logo, it navigate away from the page. Also, when I change the Logo’s URL to “../#about”, it will do what I want it to.
- This reply was modified 7 years, 7 months ago by untitledcreative.