themesjungle
Forum Replies Created
-
Hi,
It is not an error but an notice which only want you to reconfigure your fields so you can simply click on the settings and configure the checkout custom fields settings as per your requirements and it should work fine.
Kind Regards,
Forum: Fixing WordPress
In reply to: Clone wordpressHi,
Not Found Error comes when a server is not able to find the requested page. Once you have migrated everything please update your permalinks as well under admin Dashboard > Settings > Permalinks and update your site permalinks.
Please also check that the checkout and account page do exist on your website. You can check if the page has been migrated successfully or not.
If you are using Woocommerce plugin then check its settings as well and verify if Woocommerce pages are selected and configured.
Kind Regards,
Forum: Fixing WordPress
In reply to: Syntax errorHi,
It looks the issue might be coming from the theme. Can you activate any default WP theme and then check again. If the errors in the console disappears and everything works fine then the issue could be linked with the theme.
It looks you are using this WordPress theme
Kind Regards,
Forum: Fixing WordPress
In reply to: Title: WordPress ‘Add New Plugin’ not showing.Hi,
If you are not able to find the DISALLOW_FILE_MODS in the wp-config file then it could be restrictions or permissions issue as well. Have you checked with your hosting provider as well. Also make sure you have complete admin privileges so that you can install any plugin on your WordPress website.
Also if you are using the most recent version of WordPress you should not be worried. Just make sure that your plugins and WP install is updated.
Kind Regards,
Forum: Fixing WordPress
In reply to: Our Website is gone after WP updateHi,
It could be any other error caused by any other plugin. You can check the server logs and also an email is send to admin email address check that and verify which error is preventing site to work properly and then take appropriate action.
Kind Regards,
Forum: Fixing WordPress
In reply to: Syntax errorHi,
It looks an error is coming from any menu plugin you are using on your website. Can you deactivate your menu plugin and then check again. If the console errors goes away the site will work fine without any issues and you might don’t have any issues with your forms submission as well.
Kind Regards,
Forum: Fixing WordPress
In reply to: What themes am I actually using?Hi,
There are few default WordPress themes available when you setup WordPress on your server and those themes don’t have issues as they are actively maintained by the WordPress community. If you want to check your current active theme then you can do that by going to your admin Dashboard > Appearance > Themes and check which one is active.
It could be possible that your Avada theme has issues or it is not updated and that is the one which is active and causing issues.
Kind Regards,
Forum: Fixing WordPress
In reply to: Customizer isn’t workingHi,
It might be possible that Header settings are generating errors. Can you check your server logs or the other possibility could be any Javascript errors in the console. You should switch to default WordPress theme and then try to access its customizer and settings, if that works fine then it could be linked with the theme.
Kind Regards,
Forum: Fixing WordPress
In reply to: Edit posts broken?Hi,
It looks that your server might be down or is going through the maintenance due to that sometimes it takes too much time to load any page and if it is not loaded properly it displays like that in the screenshot. Can you please wait for sometime and then recheck again if it is working fine or not.
Kind Regards,
Forum: Fixing WordPress
In reply to: My Website PagesHi,
I have checked it looks you are adding an inline styles and is reducing the width to 18% due to which it is breaking layout on the desktop resolution. Please remove the following CSS which you have added or adjust that as per your needs. This will fix it and will work fine.
.content-area, .content-left-sidebar .content-area {
width: 18%;
}Kind Regards,
Forum: Fixing WordPress
In reply to: Need help with PHP codeHi,
Simply use this function for getting the link to author posts. This will work fine.
global $post; $author_id = $post->post_author; echo get_author_posts_url($author_id);
Kind Regards
Forum: Fixing WordPress
In reply to: How can i display wordpress header on my custom html pageHi,
If you are using WordPress then it uses the function get_header to fetch the dynamic header. You will also need it. If it is a page in a WordPress main theme or child theme then you can convert it into a template and then use the get_header function to fetch the existing header markup. Please make sure that you save your Custom HTML page as a PHP page otherwise it won’t work.
Kind Regards,
- This reply was modified 3 years, 3 months ago by themesjungle.
Forum: Fixing WordPress
In reply to: Need help with PHP codeHi,
You are using WP_Query for your custom query. I can’t see that you have used the function wp_reset_post_data() to reset your main query. The recommended way to loop through the posts when using WP_Query function is described below.
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); //echo the data accordingly $author_id = get_the_author_meta( 'ID' ); get_the_author_meta( 'nicename', $author_id ); $author_edit_link = get_edit_user_link($author_id); ?> <article class="full-article"> <h2><?php the_title(); ?></h2> <?php the_content(); ?> </article> <?php endwhile; wp_reset_post_data(); endif;
If you are outside loop then you can do something like that as shown below.
global $post; $author_id = $post->post_author; echo get_the_author_meta( 'nicename', $author_id );
Kind Regards,
- This reply was modified 3 years, 3 months ago by themesjungle.
Forum: Developing with WordPress
In reply to: How to hide searchform with blur event?Hi,
The code looks fine in the first glance you are hiding and showing close button. You can also show an alert as well and add any test message to verify if an event has successfully fired or not. If you see the alert message then it means it is working fine then it might be possible that you are not adding the hiding code properly. You should then check the hiding code. This is how it can be debugged. I have tested on your site console it can hide the input and close when you click outside. I hope this will be helpful.
jQuery('.search-form input').focusout(function(){ jQuery(this).hide(); jQuery('#fechar-div').hide(); })
Kind Regards,
- This reply was modified 3 years, 3 months ago by themesjungle.
Forum: Developing with WordPress
In reply to: How to hide searchform with blur event?Hi,
You can use the focusout even to hide it. When the focus will go away from the input it will fire the focusout event and on it you can simply hide your search input accordingly. I hope this will help. You can find the info about the event on this link.
Kind Regards,