Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem After Moving SitesHi Anita Shaw,
On your site display “Internal Server Error” which one is directory permission issue on server.When u have transfer your site need steps:
1) IF site url change so replaced on database.
2) change on .htaccess file if need change for directory path.
3) config.php manage user name,password,host name and database name which one u have created.
4) Manage 755 permission on directory.
5) After login wp-admin manage permalink again.
6) if u have use external theme export theme setting and import on site.Thanks,
Ravi patelForum: Fixing WordPress
In reply to: Space between gallery thumbnails#gallery-2 .gallery-item{
}Reduced width using css for this class so your list items display with near without space.
Thanks
Forum: Fixing WordPress
In reply to: Limiting the Number of Posts on Homepage Not Working@tayyab84, Please add full code of page or any external file with url so we can easy to see your code issue.
Forum: Fixing WordPress
In reply to: How to remove two trailing slash on search pagePlease remove your cache.
if u have print your url and comes // on last in url.remove “‘/'” form esc_url( home_url( ‘/’ )).
Forum: Fixing WordPress
In reply to: How to remove two trailing slash on search pageI have seen your site but not getting any update with “http://hackedia.net//”
try add this code on above form
<?php echo esc_url( home_url( '/' ) ); ?>and see thats happen your url is wrong or cache issue after update above code.Forum: Fixing WordPress
In reply to: admin errorPlease removed jquery conflict with each one. without see we have just get idea about how to fix.
Thanks.
Forum: Fixing WordPress
In reply to: How to remove two trailing slash on search page@shubhamsc, Yes need changes hear
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>/">to
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">Thanks.
Forum: Fixing WordPress
In reply to: How to remove two trailing slash on search pageSearchform.php.
Forum: Fixing WordPress
In reply to: How to remove two trailing slash on search pagesee the issue i am right on above comment. please check action code for search form.
http://s29.postimg.org/muj9es1vb/issue.png
One thing also your all url without last “/”. Please check also .htaccess file
Forum: Fixing WordPress
In reply to: How to remove two trailing slash on search pageYes,
Can u possible to share search page url?Forum: Fixing WordPress
In reply to: Moving wordpress- First of all export your database then replace your siteurl value to new one on all database.
- And import on your new database.
- After import change .htaccess file url and config file if u have add new database with user & login backend and set permalink again
.
Thanks,
Ravi patelForum: Fixing WordPress
In reply to: How to remove two trailing slash on search pageHI shubhamsc,
Please check first search form code with form action.
I think there have add more “/” tag on form submit with action . check using firebug.Thanks,
Ravi patelForum: Fixing WordPress
In reply to: How to remove two trailing slash on search pageHI shubhamsc,
I have not getting idea whats u wnats to.
Please add screen so we can get idea easy way.Thanks,
Ravi patelForum: Fixing WordPress
In reply to: How to auto-approve comments?Hello fedeandri,
Congrats for plugin but i have one suggestion added on git.make validation for user id
Thanks,
Ravi patelForum: Fixing WordPress
In reply to: Move tags to bottom of post – Big Brotherhi LevantSources,
Use this code for your meta display on bottom of post.<?php /** * @package big-brother */ $formats = get_theme_support('post-formats'); $format = get_post_format(); ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ('link' == $format) : ?> <h1 class="entry-title"><a href="<?php echo esc_url(big_brother_get_link_url()); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php else : ?> <h1 class="entry-title"><?php the_title(); ?></h1> <?php endif; ?> <div class="entry-meta"> <?php if ($format && in_array($format, $formats[0])): ?> <a class="entry-format" href="<?php echo esc_url(get_post_format_link($format)); ?>" title="<?php echo esc_attr(sprintf(__('All %s posts', 'big-brother'), get_post_format_string($format))); ?>"><?php echo get_post_format_string($format); ?></a> <?php endif; ?> <?php big_brother_posted_on(); ?> <?php /* translators: used between list items, there is a space after the comma */ $category_list = get_the_category_list(__(', ', 'big-brother')); /* translators: used between list items, there is a space after the comma */ $tag_list = get_the_tag_list('', __(', ', 'big-brother')); if (big_brother_categorized_blog()) { $meta_text = __('<span class="entry-categories">%1$s</span>', 'big-brother'); } printf( $meta_text, $category_list,get_permalink() ); ?> </div><!-- .entry-meta --> </header><!-- .entry-header --> <div class="entry-content"> <?php the_content(); ?> <?php wp_link_pages(array( 'before' => '<div class="page-links">' . __('Pages:', 'big-brother'), 'after' => '</div>', )); ?> </div><!-- .entry-content --> <?php if ('' != $tag_list) { ?> <div class="tag_list"> <?php $tag_list = __('<span class="entry-tags">%2$s</span>', 'big-brother'); printf($tag_list); ?> </div> <?php } ?> <footer class="entry-meta"> <?php edit_post_link(__('Edit', 'big-brother'), '<span class="edit-link">', '</span>'); ?> </footer><!-- .entry-meta --> </article><!-- #post-## -->Thanks,
Ravi patel