Rajavenkateshwaran
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: accents missing after upgradeOkay……. I prefer a stable version rather upgrading to a much recent version….
Forum: Fixing WordPress
In reply to: accents missing after upgradeHi i think it can be fixed But i have a few questions
Do you upgrade it to 3.5? Do you have backups and Do you use any plugins for spanish translationForum: Themes and Templates
In reply to: [Responsive] Gallery SidebarThat depends on your template. Sidebars wont appear when you choose full width template
Forum: Fixing WordPress
In reply to: Site Is Infected@ acrogenesis Thanks for the info
DTSSBC you should remove the Javascript files with strange name or strange coding. They might be in JS folders.Forum: Fixing WordPress
In reply to: I get Error 500 when I click on my Page menuWhenever you get an error dont be Panic…just rename the Plugins that you recently installed to 1 and check it. Trial and error always help me good in troubleshooting
Forum: Fixing WordPress
In reply to: Multiple logins failing/ locked out of dashboardIf you are able to log into your site you need to update inside Setting>General
WordPress address (URL) :www.meghanboyd.com
Site address (URL):www.meghanboyd.com (now it could be pointing https://missmeghandesigns.wordpress.com)Forum: Fixing WordPress
In reply to: Multiple logins failing/ locked out of dashboardDo you have access to phpmyadmin of your site?
I think you need to update siteUrl inside Wp-options table
Let me know your ideasForum: Fixing WordPress
In reply to: Two sidebarsIdea was to create two sidebars and controlling the position using CSS
<?php add_action( 'widgets_init', 'my_register_sidebars' ); function my_register_sidebars() { /* Register the 'left' sidebar. */ register_sidebar( array( 'id' => 'left-sidebar', 'name' => __( 'left-sidebar' ), 'description' => __( 'A short description of the sidebar.' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>' ) ); /* Repeat register_sidebar() code for additional sidebars. */ } ?>
Use the same code for right as well
.left-sidebar{ float: left; margin-left: 3%; margin-right: 0; width: 18%; } .right-sidebar{ float: right; margin-left: 0; margin-right: 3%; width: 15%; }
Hope my idea would be helpful!
Gallery works during previewing the post but doesn’t work after updating it? anybody knows how to fix it
link
https://www.mj3deffects.org/rare-michael-jackson-pics/
Code i used
[nggallery id=3 template=carousel images=20]when previewing carousel works good
https://www.mj3deffects.org/rare-michael-jackson-pics/?preview=true&preview_id=724&preview_nonce=01918c247d&pid=18Greetz,
Raja.