jitendrajoshi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to centralise Mail Chimp Sign Up FormI can take a look if you can send page URL where you have added the signup form.
Forum: Fixing WordPress
In reply to: Http folder to wordpressI guess you will need to dig into the source code for folders containing so called ‘control news-post’ to check if you can get them working independently or if any WordPress integration is required.
thanks
Forum: Fixing WordPress
In reply to: Theme Will Not Respond to CustomizerYou can try WP Clone: https://www.ads-software.com/plugins/wp-clone-by-wp-academy/
if you feel the move from local/dev or production failed for some reason as it would save time & effort for working with customizer to duplicate change.thansk
Forum: Fixing WordPress
In reply to: WP UpdateI would suggest the following before making an upgrade:
1. Check if your developer has not modified any code files or any update will removed.
2. Check if your theme and plugins are compatible with the version you wish to upgrade.
3. Make sure to have a complete backup of your website to restore back in case of any issues.If all the above are take care properly then upgrading to latest version should not be a problem.
Forum: Everything else WordPress
In reply to: How to have links in calendarHow about taking at look at the following plugins:
https://www.ads-software.com/plugins/the-events-calendar/
https://www.ads-software.com/plugins/spider-event-calendar/
https://www.ads-software.com/plugins/all-in-one-event-calendar/
Forum: Fixing WordPress
In reply to: CSS – centre a Javascript imageAdd the following CSS rule:
div#text-5 .textwidget {
text-align: center;
}Forum: Fixing WordPress
In reply to: how can I direct a page into another pageIf you are just looking for redirecting pages you can try:
https://www.ads-software.com/plugins/redirection/Forum: Localhost Installs
In reply to: Can't login after cloning my WordPress with WP cloneYou can try resetting your password using PhpMyadmin:
https://codex.www.ads-software.com/Resetting_Your_PasswordIt turned out to iThemes Security 5.1.1 issue.
Your plugins seems to be working fine.thanks
Forum: Fixing WordPress
In reply to: php if, else & custom fields – syntax errorCan you try the following:
<?php if ( get_post_meta($post->ID, 'author-photo', 'author-name', 'author-bio', true) ) : ?> <div class="authorbox"> <div class="authorphoto"> <img src="<?php $key="author-photo"; echo get_post_meta($post->ID, $key, true); ?>" /> </div> <div class="authorbox-content"> <h3 class="author-name"><?php $key="author-name"; echo get_post_meta($post->ID, $key, true); ?></h3> <p><?php $key="author-bio"; echo get_post_meta($post->ID, $key, true); ?></p> </div> </div> <?php elseif ( get_post_meta($post->ID, 'author-name', 'author-bio', true) ) : ?> <div class="authorbox"> <div class="authorbox-content-nophoto"> <h3 class="author-name"><?php $key="author-name"; echo get_post_meta($post->ID, $key, true); ?></h3> <p><?php $key="author-bio"; echo get_post_meta($post->ID, $key, true); ?></p> </div> </div> <?php endif; ?>
docs: https://php.net/manual/en/control-structures.alternative-syntax.php
Forum: Fixing WordPress
In reply to: My sidebar is beneath the pageCan you please specify the page with the sidebar issue?
I had a look and it seems fine in Mozilla Firefox 40.0.3Forum: Fixing WordPress
In reply to: sidebars style changeForum: Fixing WordPress
In reply to: sidebars style changeYou can set custom background image for the sidebar using CSS.
Forum: Fixing WordPress
In reply to: Add a Sidebar on the RightPlease provide your website URL.
Forum: Fixing WordPress
In reply to: menu positioning helpMenu seems to be responsive. Is your issue fixed?