Ruchika Karda
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] This contact form is located in the wrong placeWe also encountered this issue, and it is strange that removing the container/enclosing element fixed it.
Thanks for a quick reply. Visit this: https://lauratolosinutrition.com/love-your-lifestyle/top-7-tips-to-reboot-and-rebalance/. On this page, widget outputs events under Calendar Of Events widget in the sidebar. But it is not showing any output on the same page for the footer widgets. However, is you visit https://lauratolosinutrition.com/category/recipes/, the widget is outputting the events in footer widgets. I am puzzled why it is working where there is a single instance and not working when there are multiple instances of the widget. Pls help
Forum: Fixing WordPress
In reply to: Malware Keeps Coming BackHi,
The plugin is really good at detection. For root cause analysis, it’s recommended to hire a professional security expert. The plugin author also provides malware removal support. May be you want to give it a try.
Forum: Fixing WordPress
In reply to: Malware Keeps Coming BackHi,
I also had a similar issue on one of my client sites. I cleaned it twice. In my case the file permissions were also getting updated by the site infection. I actually wanted to find the root cause analysis so that I could get rid of the infection. I used malCure’s malware removal plugin and it was able to detect all the infected files. I cleaned the site and later requested a site audit offered by plugin developer. Since then there is no recurrence.
Are you still having the issue?
Forum: Plugins
In reply to: [WP Real-Time Social-Proof] Manual list uploadSure, you can do that. There is a premium addon for this feature: Records Manager for WP Social Proof.
Forum: Plugins
In reply to: [Smart Slider 3] Fade content layerI dived into the settings again and figured it out.
Forum: Plugins
In reply to: [Smart Slider 3] Fade content layerHere’s the link for reference: https://dev.forarestaurants.co.uk/
Forum: Fixing WordPress
In reply to: Cannot access webpage from DashboardTry switching to the default theme, i.e, Twenty Fifteen and see if the website still displays “TEST”.
Forum: Fixing WordPress
In reply to: Display widget only on single posts, not single product pageWoocommerce creates a custom post type called Product for Products. To check if the single product is displaying, you can use the following conditional tag:
is_singular('product')
Here’s the updated code:
add_action( 'genesis_before_footer', 'my_footer_widget2' ); function my_footer_widget2() { if ( is_home() || is_single()) { if (is_singular('product')) {return;} genesis_widget_area ('my_footer_widget2', array( 'before' => '<div class="footer_widget2">', 'after' => '</div>', ) ); } }
Forum: Fixing WordPress
In reply to: modification widgetOr you can even try Widget logic: https://www.ads-software.com/plugins/widget-logic/.
Install & activate this plugin. On the widgets screen, you will find the widget-logic area added to every widget. You simple need to add the conditional. For example, if you want to show the widget only on the home page, add is_home() in the widget_logic textarea.
Forum: Fixing WordPress
In reply to: Internal links to blank pagesHi ncasado,
Just try troubleshooting. Try the following things:
- Set WP_Debug true in wp-config.php and refresh the page to see if it throws any error.
- Switch the theme to default WordPress theme (Twenty Fifteen) to see if the problem persists.
You may also like to check out this article here: https://code.tutsplus.com/tutorials/fixing-the-wordpress-white-screen-of-death–cms-21008
Forum: Fixing WordPress
In reply to: Links disappeared from my homepageHi Vaiaata,
I can see that the menu links are visible. To be precise, the menu links are visible on the desktop version with the resolution greater that 1024px in width and it takes the from of the button with “Menu” text on it if you view it on the resolution less that 1024px. This is simply because the WordPress theme you are using is mobile responsive; which means that your website design will adapt to various mobile screens and as per your responsive design specifications, the menu links will turn into a menu button on iPad, iPhone, etc.
Forum: Fixing WordPress
In reply to: Installing message: Already InstalledHi Carolateixido, try with another WordPress installation. Follow the steps given below:
- Create a directory in localhost, mysite-2 for instance.
- Create a new database for this set-up.
- Download WordPress and upload the files and sub-directories directly under mysite-2.
- Once all the files are uploaded, open https://localhost/mysite-2 in browser.
- It will take you to configuration screen. Follow the wizard / instructions. Provide the name of the database, database username, password and other information. WordPress will automatically create a wp-config.php with this information.
- It will then prompt you to enter the site name, create a username and enter the password. Just follow the instructions.
- The WordPress will then ask you to log-in with the username and password just created.
- Use the same creds to log-in to Worpdress. If all goes well, WordPress will redirect you to the dashboard.
Additionally, you may find this tutorial useful: https://www.binaryturf.com/wordpress/business/beginners-guide-to-setting-up-the-first-wordpress-website-part-ii
All the best!