Radices
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: upgrade & update not workingThat might be a Cache or JavaScript issue.
Forum: Themes and Templates
In reply to: [Nirvana] Different Primary Menus for Different PagesMorning,
I’ve downloaded the theme and will look into it more this afternoon. Have you looked at the codex?
Forum: Themes and Templates
In reply to: [Nirvana] Different Primary Menus for Different PagesGreat job so far! OK so you might ask your Theme’s support people as well but to keep you going I think the menu is in this block of code.
<nav id="access" role="navigation"> <?php cryout_access_hook();?> </nav><!-- #access -->Its calling a function called cryout_access_hook(); so you will need to search the functions.php for it and try to figure out what its doing. Themes have to add theme support for their menus. Heres an example from a different theme.
// Menu functions with support for WordPress 3.0 menus if ( function_exists('wp_nav_menu') ) { add_theme_support( 'nav-menus' ); register_nav_menus( array( 'primary' => esc_html__( 'Primary Navigation', 'design' ), ) ); } function design_nav() { if ( function_exists( 'wp_nav_menu' ) ) { $defaults = array( 'container_class' => 'navigation-menu', 'container_id' => 'navigation-menu', 'menu_id' => 'main-top-menu', 'menu_class' => 'sf-menu', 'link_before'=> '<span>', 'link_after' => '</span>', 'theme_location' => 'primary', 'fallback_cb' => 'udesign_nav_fallback' ); wp_nav_menu( $defaults ); } else { design_nav_fallback(); } }Take note of the lines
register_nav_menus( array( 'primary' => esc_html__( 'Primary Navigation', 'design' ), ) );This is where you will have to eventually register your other menu choice.
Forum: Themes and Templates
In reply to: [Nirvana] Different Primary Menus for Different PagesHi,
This looks like it’s going to be too much for you right now because to modify the templates requires you to change the code. It doesn’t matter what theme you are using it will need the same kind of modifications.
What about having two separate sites? You would then just link from the English menu button on the main site to the other site and from that English site the Spanish menu item links to the main site. You could set the English WordPress site up as a sub domain.
Forum: Fixing WordPress
In reply to: .htaccess to show index.html instead of index.php not working?What do you have set in WordPress for the Permalinks?
Forum: Everything else WordPress
In reply to: Menu not working from front endThe menu is working for me! Try clearing your Browsers Cache.
Forum: Fixing WordPress
In reply to: upgrade & update not workingTurn debug mode on to see if its throwing an error.
http://codex.wordpress.org/Debugging_in_WordPress
You might also try 767, 775 or 777. You don’t want to leave it that way but it’s good as a test. If its a permissions issue then you need to talk to the Hosting people to find whats up with their set-up.
If you have cPanel and can change your PHP version I’d try rolling it back to 5.5 or 5.4 again to debug the issue.
Forum: Fixing WordPress
In reply to: Media library problemHi,
Try deactivating all of the plugins and test in case its a conflict with the new version of WP. If it fixes the issue then start reactivating each plugin one at a time until it breaks it again (I know you’ll have to upload an image each time to test).
If that doesn’t fix it then I’d consider doing a Manual re-install of the CORE files. Get a fresh copy of WordPress and overwrite all the folders and files EXCEPT the wp-content folder and your wp-config.php file.
Forum: Fixing WordPress
In reply to: image rotationThis is an old plugin but might help you find an answer. From what I gather it has to do with the EXIF … or meta data of the pictures. It seems that some apps don’t actually rotate the pixels but just set the meta to tell the rendering app which way is up.
Forum: Fixing WordPress
In reply to: problem with permalinksWhen you change the Permalinks to what? What type of server (Linux / Windows)?
Forum: Fixing WordPress
In reply to: Administration Panel not working fine after migrationWhat was your migration method? Did you install a copy of WordPress on the server first and then move the content into it? I’d consider doing a Manual re-install of the CORE files. Get a fresh copy and overwrite all the folders and files EXCEPT the wp-content folder and your wp-config.php file.
Forum: Fixing WordPress
In reply to: Post and Pages not actualizing automaticallyTry this at the very top of your themes header.php file.
<?php header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); header('Cache-Control: no-store, no-cache, must-revalidate'); header('Cache-Control: post-check=0, pre-check=0', FALSE); header('Pragma: no-cache'); ?>Forum: Fixing WordPress
In reply to: Uploading ImagesI’m saying that your Hosting service might be to blame and that they changed something. It could be a file permission thing.
Forum: Themes and Templates
In reply to: [Nirvana] Different Primary Menus for Different PagesThe theory is the same but a bit more complicated. You would need to create another menu in appearance>menus and then add that menu to the custom header file in the child theme. So you would have spanish-header.php and english-header.php.
I wonder though whether googles translation element would work for you. It translates the whole site. You can limit the choices of languages as well.
<div id="google_translate_element"></div><script type="text/javascript"> function googleTranslateElementInit() { new google.translate.TranslateElement({pageLanguage: 'en', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element'); } </script><script type="text/javascript" src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>Check out an example of it here.
Forum: Themes and Templates
In reply to: [Nirvana] Different Primary Menus for Different PagesI’ve done this by creating a custom header page for the page you want to have the custom menu on. You also create a template for that page and in it you call your custom header.
Look here http://girlsgonegazelle.com/ and click on the Benny Bulldog menu item.