Shaylee
Forum Replies Created
-
I’m sorry to hear that you’re facing a bug with Ninja Forms after updating to the latest version.
I can understand the frustration that is caused by having an automatic email show incorrect data. know how important it is to have personalized and accurate information in those confirmation emails.
Based on your description, it seems like there might be an issue with the merge tags not being interpreted correctly. It’s strange that the first field is displaying as “field:whatever_id” instead of the actual data. You’ve already taken the right steps by deleting the field names and selecting them again, but the problem persists.To help resolve this, let’s try a couple of troubleshooting steps.
First, clear your browser cache to rule out any cached data interfering with the form rendering. This can sometimes cause unexpected issues.
Additionally, double-check the field IDs and merge tags in the email template to ensure they are correct and properly formatted, like{field:field_id}
.If the problem continues, it would be best to contact the Ninja Forms Customer Success team directly. They have the expertise to dive deeper into the issue and provide you with the necessary guidance to resolve it.
You can reach out to them through their support forum or customer support email. They’ll be able to assist you further and get the confirmation emails working properly again.
Forum: Localhost Installs
In reply to: Missing Widget Areas On Localhost SiteDid you try re-installing a new version of Woocommerce? Sometimes plugin files can become corrupted… Very weird issue indeed.
Forum: Fixing WordPress
In reply to: secure password rangeI would send the theme developers a message: https://colorlib.com/wp/forums/ and let them know you are getting this error.
In the meantime if it were me I would look through the theme template files and see if I could find code like this:
?php function my_password_form() { global $post; $label = 'pwbox-'.( empty( $post->ID ) ? rand() : $post->ID ); $o = '<form action="' . esc_url( site_url( 'wp-login.php?action=postpass', 'login_post' ) ) . '" method="post"> ' . __( "To view this protected post, enter the password below:" ) . ' <label for="' . $label . '">' . __( "Password:" ) . ' </label><input name="post_password" id="' . $label . '" type="password" size="20" maxlength="20" /><input type="submit" name="Submit" value="' . esc_attr__( "Submit" ) . '" /> </form> '; return $o; } add_filter( 'the_password_form', 'my_password_form' ); ?>
[Moderated: Code formatted. See https://make.www.ads-software.com/support/handbook/forum-welcome/#post-code-safely%5D
That I could edit to make sure those <p> tags were removed.
Also check this out: https://codex.www.ads-software.com/Using_Password_Protection
- This reply was modified 6 years, 10 months ago by t-p.
Forum: Fixing WordPress
In reply to: Moving navigation bar down#secondary{
position: relative;
top: 50px; ( you can change this number to whatever you want based on where you want the location of the text to be )
bottom: 0px ( same with this as well )
}- This reply was modified 6 years, 10 months ago by Shaylee.
Forum: Fixing WordPress
In reply to: Problem with “Visit Site” linkSo I believe with this plugin there are two settings. One is a maintenance mode and the other is a construction mode. Make sure maintenance mode is selected.
Double check your user settings and make sure they are selected to admin. If they are great then go ahead and clear the cache.
Also themes sometimes provide that same type of functionality. So double check your theme and make sure it doesn’t have a maintenance mode feature.
I’ve had similar issues with this plugin before. So let me know if that works.
- This reply was modified 6 years, 10 months ago by Shaylee.
Forum: Fixing WordPress
In reply to: New header made in elementor will not replace old oneIf you look at your theme templates and find where get_header(); once you find it make some alterations. That is how I would go about it.
Forum: Fixing WordPress
In reply to: Divi Theme Options logo upload button not workingCan you post a link of your homepage? Also have you tried reinstalling Divi?
- This reply was modified 6 years, 10 months ago by Shaylee.
Forum: Fixing WordPress
In reply to: Embedding pages with persisting DomainIs it possible for me to see the both websites? The one that contains the embed ( theoretically ) and the embedded one itself?
Logically if you have an embedded webpage and you are clicking links on that webpage they are going to go where the links want them to go. So you would need to change the links within the embed in order to have them direct to the place you want them to go.
Is it more complicated than that or am I missing something?
- This reply was modified 6 years, 10 months ago by Shaylee.
Forum: Fixing WordPress
In reply to: secure password rangeSo <p></p> are HTML tags. My guess as to why you are seeing those HTML tags it because of the way you were editing the page.
It should be relatively simple to get rid of. If you are using a page builder then go into the text block where the text is and check to make sure it has no <p> tags around it. If you see them, delete them and update your page.
If that doesn’t work let me know what theme are you using.
Forum: Fixing WordPress
In reply to: Add separators to Customizer sectionsCheck out this article from the codex:
https://codex.www.ads-software.com/Theme_Customization_API
this should give you a good idea on how to change the customizer to your liking.
Forum: Fixing WordPress
In reply to: Website crashes because of image galleries on the editor side.1) Make sure all your images are optimized. Try out compressor.io
2) Increase the memory limit on your php.ini file. If you can’t find it in the cPanel then contact your hosting provider. They will be able to increase the limit.
Forum: Fixing WordPress
In reply to: Embedding pages with persisting DomainTry this out:
<iframe src=”url of required page”>
</iframe>Forum: Developing with WordPress
In reply to: How to get “cat=>” workingSo I think it should look like:
<?php /* Template Name: CodePageTemplate */ ?>
//Category loop One starts here
<?php
$args = array( ‘post_type’ => ‘edd_download‘, ‘cat’ => 46 , ‘posts_per_page’ => 10);
$loop = new WP_Query( $args );<!— loop code –>
?>
Forum: Developing with WordPress
In reply to: How to get “cat=>” workingI checked out the codex and under Querying by Post Type might be helpful https://codex.www.ads-software.com/Post_Types#Querying_by_Post_Type
According to the docs you don’t even need to use WP_Query you should just be able to declare the array ‘edd_download’ post type like in the docs.
In that first block of code I noticed you had:
query_posts(‘post_type=edd_download’);<?php /* Template Name: CodePageTemplate */ ?>
//Category loop One starts here
<?php
$opinionPosts = new WP_Query(‘cat=>46’);
query_posts(‘post_type=edd_download’);
if ($opinionPosts->have_posts()) :
while ($opinionPosts->have_posts()): $opinionPosts->the_post(); ?>
<h2><?php the_title(); ?></h2>
<?php endwhile;
else :
//Here
endif;
wp_reset_postdata(); <!–Include that –>
?>- This reply was modified 6 years, 10 months ago by Shaylee.
Forum: Fixing WordPress
In reply to: custom widget area not to stick to navigation menuCheck this article out:
https://css-tricks.com/scroll-fix-content/
I think it will help you accomplish what you are trying to do ??