Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Removing .html from urls (404 error after permalink change)@lindyloves,
1) U have checked your permalink setting for this?
2) When u have added url on .html how to added using plugin or any other way.Thanks,
Ravi PatelForum: Fixing WordPress
In reply to: Twenty-SixteenAdd Menu background with above div and add menu.
In cases menu on not click so u have use z-index with css.Forum: Fixing WordPress
In reply to: Twenty-SixteenPlease add screen short so we can easy to get what’s u wnats and how to manage this.
Forum: Fixing WordPress
In reply to: How do i create a menu that displays the latest posts automatic?Follow this steps:
1) Create one page
2) Assign page as Posts page: Setting-> Reading->Front page displays
3) Add this page on menu2nd ways.
1) Create one page and assign template
2) On template created own code for latest post.
3) Add this page on menuForum: Fixing WordPress
In reply to: Images not appearing on front pagePlease delete first your cache folder.
Then run this url
http://electripack.com/wp-content/themes/electripack/timthumb.php?src=http://electripack.com/wp-content/uploads/2013/11/Building_Front_Small.jpg&w=340&h=198Forum: Fixing WordPress
In reply to: need help for multi-site Google AnalyticAdd this code on function.php and manage condition for “get_current_blog_id()”
All ready tested this code on site.<?php add_action('wp_footer', 'add_googleanalytics'); function add_googleanalytics() { if (get_current_blog_id()==1){ ?> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-7567xxxx-x', 'auto'); ga('send', 'pageview'); </script> <?php } }Forum: Fixing WordPress
In reply to: Remove header and footer on a specific pageso
1) u have created copy header.php & footer.php
2) Add own name header-1 or footer-xyz and apply changes
3) then call on page get_header(‘1’) and get_footer(‘xyz’).Forum: Fixing WordPress
In reply to: Remove header and footer on a specific pageBetter way to :
1) create custom template
2) Remove get_header() and get_footer().
3) Assign template of this page.i have fix for homepage is_home to change is_front_page().
Forum: Fixing WordPress
In reply to: Nothing loads in wordpress editorChange config.php on
/** Database Charset to use in creating database tables. */
//define(‘DB_CHARSET’, ‘utf8mb4’);
to
define(‘DB_CHARSET’, ‘utf8’);Forum: Fixing WordPress
In reply to: WordPress Add Plugin ProblemForum: Fixing WordPress
In reply to: How to count nextpost in post?WP Table of Paginated Contents
Use this extension for better view pagenation for <!–nextpost–>
after every <!–nextpost–> manage like
[section_title title=your title hear]I have all ready useing for lots of contact on same page.
Forum: Fixing WordPress
In reply to: Cannot loginhello,
your site version “Version 3.6.1”. but we not says to provide details for login as per forum rules.
how we can check your issue.?
Thanks
Forum: Fixing WordPress
In reply to: Please help! Issues with jQuery ConflictCreate noconflict.js add code in or added on head with <script> tag
jQuery.noConflict();after check any main.js arrrived mutitime.
Forum: Fixing WordPress
In reply to: Redirect from non www to wwwRewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]