Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Adsense for idiots

    #37563

    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

    In reply to: javascript – where to add in loop-page.php?

    #37500

    Hang on, let’s do this one by one. So you’ve placed the acac1.js file in your child theme’s folder. Create a functions.php file 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

    In reply to: WP-Admin Password Reset

    #37547

    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

    In reply to: WP-Admin Password Reset

    #37545

    Just use the “Lost password” link in the login screen:

    tkXPsc9.png

    Admin

    Try turning off the “Make themes work multilingual” option.

    Admin

    In reply to: Adsense for idiots

    #37561

    By “across the top of the screen” do you mean above everything else, including the site header?

    Admin

    In reply to: WP-Admin Password Reset

    #37543

    WP Admin and cPanel are two completely different interfaces. Which one are you trying to get access to?

    Admin

    In reply to: No slider at all after upgrade?

    #37506

    Try resetting the theme’s settings. You can export the existing theme options as backup just in case resetting has no effect.

    Admin

    In reply to: javascript – where to add in loop-page.php?

    #37498

    This line:

    <script src="acac1.js" type="text/javascript"></script>

    shows that you’re trying to load the acac1.js file, but as you might expect, that’s not the correct way to do it.

    First off, where is that acac1.js file located on your server?

    Admin

    In reply to: Home page Issues

    #37531

    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.

Viewing 10 posts - 2,081 through 2,090 (of 6,030 total)