Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How can i make my facebook page automatically publish my new posts?Try this one https://wordpress.org/plugins/social-networks-auto-poster-facebook-twitter-g/screenshots/.
Share your post on multiple network. also pro version available.
Forum: Fixing WordPress
In reply to: Images in media libraryGo media setting and select option unattached and delete.
http://s16.postimg.org/7tpvlot1x/media.pngForum: Fixing WordPress
In reply to: My header image doesn´t show on my mobile (Iphone)go style.css line no 950;
on this Rule declaration replace
.navbar{}
background-color: #f7f5e7;
to
background-color:transparentForum: Fixing WordPress
In reply to: Fix Arabic Link Redirecthii @waelt
This issue generate based on url. when u have add title in Arabic language the url auto insert in Arabic so see my url.
http://s14.postimg.org/5e98mfia9/arabic.png
so just edit url and add which u want hear.
if u want to add in arabic and this one redirect on home. please one time give url in eng. and check same issue there or not.
Forum: Fixing WordPress
In reply to: Add a log out button to the menuadd_filter('wp_nav_menu_items','add_logout_link', 10, 2); function add_logout_link($items, $args) { // print_r($args); exit; if (is_user_logged_in() && $args->theme_location == 'primary'): ob_start(); $items.= '<li><span class="my-account"><i class="fa fa-lock"></i><a href="'.wp_logout_url().'">Logout</a></span></li>'; endif; return $items; }After this code add not work please check this function with remove comment before print_r() check a argument value of your menu.
Forum: Fixing WordPress
In reply to: Remove menus using WordPress Appearance optionHii @clarcombe,
Thats display on your theme primary menu. if u remove so display by default pages like menu.
so go on header file and make a code like this.
<?php if(!is_home()){ wp_nav_menu( array( 'theme_location' => 'primary', 'menu_class' => 'nav-menu', 'menu_id' => 'primary-menu' ) ); } ?>or u can add this code on function.php
<?php function remove_from_home( $args ){ if(!is_home()){ return $args; } } add_filter( 'wp_page_menu_args', 'remove_from_home', 40 ); ?>Forum: Fixing WordPress
In reply to: Add a log out button to the menuAdd this code on function.php and define a name of a menu on code.
<?php add_filter('wp_nav_menu_items','add_search_box', 10, 2); function add_search_box($items, $args) { if($args->menu=="top_menu"): // add your menu name ob_start(); if(is_user_logged_in()): $items.= '<li><span class="my-account"><i class="fa fa-lock"></i><a href="'.wp_logout_url().'">Logout</a></span></li>'; endif; endif; return $items; } ?>Forum: Fixing WordPress
In reply to: My header image doesn´t show on my mobile (Iphone)Forum: Fixing WordPress
In reply to: Site icons don't show in google chrome?hi camel77,
I have seen your issue that’s issue regarding your css in define path is wrong for awesome fonts.Forum: Fixing WordPress
In reply to: My posts hit the spam queueThanks @marius,
i am Now continue block.
i have recently reply on this but not display. how much time for i not given answer after remove from block list any rules for this please suggest me.https://wordpress.org/support/topic/my-header-image-doesn´t-show-on-my-mobile-iphone?
Forum: Fixing WordPress
In reply to: Small portfolio refuses to loadplease check this portfolio page i have seen your all portfolio page is working very well. so please check at least one image add on this page.
Forum: Fixing WordPress
In reply to: Blog not postingHii @csmc,
First of Remember blog page on display only post not page.
But u have created a this one is page so not display on blog.please correct this one. if u don’t want to delete page and create post so add post switch plugin using this u can easy to transfer page to post.
Forum: Fixing WordPress
In reply to: 2 headers or index?Hii please remember one this you can any name given this file but before your name required a header- word then your name.
so now header-{{yourname}}. so call using this function
<?php get_header('{{just your name which u have assign}}');?>Forum: Fixing WordPress
In reply to: 2 headers or index?yes u have add multiple header.
First copy header.php and give any name after header text with -.
Like and add your slider code on copyfile.header-custom.php so call on file <?php get_header('custom');?> header-slider.php so call on file <?php get_header('slider');?>Forum: Fixing WordPress
In reply to: One PC is not loading the websitehii @scan_bv,
On your site u have access any plugin or host which is provide multiple attempt log-in sequrity provided. if yes then your ip is block for some times based on your selection option.
please say us which plugin u have use.