Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Uploading pics from iphoto…losing editsHi healthyhelper,
Follow step for import image iphoto to wp.
Thanks,
Ravi patelForum: Fixing WordPress
In reply to: can't login to my admin panelHi, tar_dawd
Are u enter right value for login. if u wants to change just go.
On your database select “wp_users” table “user_pass” column and replace your password with md5.
Thanks,
Ravi patelForum: Fixing WordPress
In reply to: JQuery AccordionHello NLCW88,
U have insert external jQuery but all ready wordpress is provided default jquery for this.https://codex.wordpress.org/Function_Reference/wp_enqueue_script
<?php wp_enqueue_script('jquery-ui-accordion'); ?>Forum: Fixing WordPress
In reply to: Category/Archive pages not workingCheck your files “archive.php,index.php or taxonomy-post_format.php”
Any space exist on top header.Also check “.htaccess”
After check files not work “function.php” not close “php(?>)” tag.Forum: Fixing WordPress
In reply to: Category/Archive pages not workingHello BritneyS,
Please change permalink structure.
Settings -> Permalink-> select postname.Thanks,
Ravi patelForum: Plugins
In reply to: [Smart Countdown FX] Need Apple-style FoldingHow to Add also on “scd-counter” style?
Forum: Fixing WordPress
In reply to: Graphic element in sidebarHi, For your site best ways to display client’s logo use this plugin WP Logo Showcase Responsive Slider After install see this one provide own widget or not.
In case not provide add shortcode in text widget.
Thanks,
Ravi patelForum: Fixing WordPress
In reply to: posts by a specific date<?php $args = array( 'day' => '29', 'monthnum' => '10', 'year' => '2015', 'posts_per_page' => -1 ); $my_query = new WP_Query( $args ); if($my_query->have_posts()): while ( $my_query->have_posts() ) : $my_query->the_post(); ?> <h2><a href="<?php echo get_permalink(); ?>"><?php echo get_the_title(); ?></a></h2> <?php echo get_the_excerpt(); ?> <?php endwhile; endif; wp_reset_postdata(); ?>Forum: Fixing WordPress
In reply to: Site is working incorrectly on ChromeHii Elena,
You have not close a <script> tag as well as issue arrived ” Unexpected token <” near <div> with is define on screen.
Please close a “</script>” after this 2 lines
ga('create', 'UA-64924170-1', 'auto'); ga('send', 'pageview');Thanks,
Ravi patelForum: Fixing WordPress
In reply to: posts by a specific dateHi Wanderley Souza,
Using this code and define your date for post listing.<?php // Setup arguments. $args = array( // Day (1 - 31). 'day' => date( 'j' ), // Month (1 - 12). 'monthnum' => date( 'n' ), // Year (minus 1). 'year' => date( 'Y' ) - 1, // Show no of post -1 to all 'posts_per_page' => 10 ); // Instantiate new query instance. $my_query = new WP_Query( $args ); ?>Forum: Fixing WordPress
In reply to: Password protected posts on a special page onlyHi Awareman,
U have display private post listing using this plugin.
Advanced Post ListUsing a post status u have get posts.
Now in your case use with private status post.Thanks,
Ravi patelForum: Fixing WordPress
In reply to: wp admin accessHi,cryptojim
Using MySQL Command Line: go on mysql where your database:
Select your database -> wp_users table (user_pass) column and replace password for selected user with md5.Thanks,
Ravi patelForum: Fixing WordPress
In reply to: Replace "Leave a reply" with comment countHi mattmaldre,
I have tested this code working fine with latest wordpress.
Please define more information. please add canvas theme url.
Please see this answer. (Not been able to change the ‘Leave a Reply’ title in the comments form for Canvas 4.2.0.)But provided a filter function for woo themes try.
comment_form_defaults to woo_comment_form_argsMore hook Functions hear for wootheme.
Thanks,
Ravi patelForum: Fixing WordPress
In reply to: Contact me pageHii,
Create a mail.php add mail function on it.
Add this file on your site root directory and run with http://www.xyz.com/mail.php and see you have getting any mail or not.
IF not getting contact your server provider.Thanks!
Forum: Fixing WordPress
In reply to: Uploading large number of images