Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
Go to Graphene Mobile options page > Advanced > Action Hooks Widget Areas. Click on “header.php” and tick the checkbox next to “mgraphene_header_before”. Save the options.
Then, go to WP Admin > Appearance > Widgets, add a text widget into the “Graphene Mobile Header Before” widget area. Add your mobile adsense code to that text widget and save it.
Admin
Hang on, let’s do this one by one. So you’ve placed the
acac1.jsfile in your child theme’s folder. Create afunctions.phpfile in your child theme and add this code:<?php
/**
* Enqueue custom scripts
*/
function my_enqueue_scripts(){
if ( ! is_admin() ) {
wp_enqueue_script( 'acac1', get_stylesheet_directory_uri() . '/acac1.js', array(), false );
}
}
add_action( 'wp_enqueue_scripts', 'my_enqueue_scripts' );Admin
Yes, if you have access to the server’s control panel and can get to phpmyadmin, you can manually change the password value in the database. Easier to just keep trying the email addresses that you might have used.
Admin
Just use the “Lost password” link in the login screen:
Admin
In reply to: Multilingual posts category problem after updating to 1.8.3
April 9, 2013 at 7:55 am #36166Try turning off the “Make themes work multilingual” option.
Admin
By “across the top of the screen” do you mean above everything else, including the site header?
Admin
WP Admin and cPanel are two completely different interfaces. Which one are you trying to get access to?
Admin
Try resetting the theme’s settings. You can export the existing theme options as backup just in case resetting has no effect.
Admin
This line:
<script src="acac1.js" type="text/javascript"></script>shows that you’re trying to load the
acac1.jsfile, but as you might expect, that’s not the correct way to do it.First off, where is that
acac1.jsfile located on your server?Admin
Currently, there’s no option to show the most recent post in a static front page manner, with the “Homepage Panes” showing the other 4 latest posts excerpts. The only way you can achieve this is by creating a custom template for the frontpage in a child theme.
