Ravikumar Patel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Users still able to see the admin bar!1) Using this code admin bar hide from front side.
2) if have made create condition for which user can not see the adminbar.
3) if u want just hide so make css for #wpadminbar.try to contact me i have seen required to live site then i have manage this one.
Forum: Fixing WordPress
In reply to: dashboardyes Fernando,
U Have add registration, forgot pass., profile management for user.
There have so many plugin available on market.Go first default option on:
Wpadmin->Settings->general-> Membership check mark apply and save.After u want a using plugin so use Theme my login.
if your site is live please contact me i have seen your site and i have send some suggestion for this.
Forum: Fixing WordPress
In reply to: Problem in linking the js fileAdd valid name assign before url.
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' ); function theme_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri(). '/style.css' ); wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/style.css',array('parent-style')); wp_enqueue_style( 'slick-style','//cdn.jsdelivr.net/jquery.slick/1.5.0/slick.css',array('parent-style')); wp_enqueue_script('slick-script','//cdn.jsdelivr.net/jquery.slick/1.5.0/slick.min.js',array('jquery')); }
Forum: Fixing WordPress
In reply to: how to get my metaslide slideThis means that jQuery is not defined so you just need to figure out why it’s not defined. Loading it twice is not a good thing.
You should only need to load jQuery once, and make sure it’s loaded before this script is.
Other than that you could try replacing $ with the actual text jQuery.
jQuery(window).load(function($) {
Or you could try wrapping it in an anonymous function
(function($) { })(jQuery);
Forum: Fixing WordPress
In reply to: Users still able to see the admin bar!just add this code on function.php
add_filter('show_admin_bar', '__return_false');
After u can use theme my login plugin for front side login, registration and profile management.
Forum: Fixing WordPress
In reply to: Trying to save my site. All I have is a backup.- create old site file zip and transfer this zip on new server easy using putty.
- Export your database from old server to import in new.
- change new user name and database value on config.php
- then just run your site go backend set permalink agains.
Forum: Fixing WordPress
In reply to: [Menu] Re-installed child theme, crazy menu in returnThere have some css regarding issue for full width.
https://rjcenterberkeley.org/wp-content/themes/RJC_style_theme/style.css
Line no 139
Forum: Fixing WordPress
In reply to: Home page changed after updates- Go Adminpanel:
- Select Settings ->Reading options
- A static page (select below)
Front page: option dropdown there have select your page for homepage.
Forum: Fixing WordPress
In reply to: Login redirects to wrong urlPlease go on wordpress.com forum Add your question hear to easy get solutions.
Forum: Fixing WordPress
In reply to: dashboardOk now u have tested in 4.2.2 and also other 2 person says this is working on wp 4.2.2 version.
so please do not refereed to notice just use this plugin and see the results.
in your case not work this one so u can easy to remove this plugin related data using plugin options.
Forum: Fixing WordPress
In reply to: Slideshows just stopped workingyour images size is so high so just try new slide with 2 small size image. then check this is work or not.
Try cache plugin.
Forum: Fixing WordPress
In reply to: You don't have permission to access / on this server.this is apache server file issue. see hear
Forum: Fixing WordPress
In reply to: Log in / mysite.bla.bla/wp-adminHii u have forget just your backend url right?
so follow this step go your theme using ftp and add this code on header.php any position.
<?php echo admin_url(); ?>
after open front side and see your admin url which u have forget.
Forum: Fixing WordPress
In reply to: dashboardThere have many plugins available i have just provide one link use this.
Forum: Fixing WordPress
In reply to: Latest Post Showing instead of Homepage Taglinecheck code on header.php with this code for tag line.
<?php bloginfo( 'description' ); ?>