• I have a few questions about the raindrops theme I’m using:

    1) I would really like to remove the Page Titles from each page, although when I do, it also removes the link in the menu bar above it. I need the links in the menu bar just want the page titles gone from each page. These titles are embedded with a link to that very page which seems kinda pointless.

    2) Is there a way to use the extra space on either side to place ads or photos? If so, how do I access the space? I removed the side bar to give more room for my content but would like to still use that extra space for photos.

    Thanks in advance for your help!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author nobita

    (@nobita)

    Hi Calliesue

    I would really like to remove the Page Titles from each page

    There are some kinds of methods of realizing.
    But an easy method

    Step 1.
    Using a custom field when you publish new page.

    Create a custom field name ‘css’.

    Value set below code.

    .entry-title a{display:none;}

    Step 2.
    Create a custom menus.
    -Set Menu Name for example my_menu.
    -Select pages your needs pages.
    -Submit Add to menu where the pages meta box.
    -Submit save menu where my_menu metabox.
    -Select a my_menu where Theme Locations and submit.

    Is there a way to use the extra space on either side to place ads or photos?

    How to show Adding space.

    wp-config.php
    add first line.

    define('WP_DEBUG',true);

    next

    themes/functions.php line:28

    if( ! isset( $raindrops_actions_hook_message ) ){
            $raindrops_actions_hook_message = false;
        }

    value set below

    if( ! isset( $raindrops_actions_hook_message ) ){
            $raindrops_actions_hook_message = true;
        }

    then show your blog

    It will be showing the adding space.

    For example.

    Add a image where default sidebar above.

    Add a file name ‘hook-prepend-default-sidebar.php’ where the Raindrops theme directory.

    Write a file below.

    <img src="http://www.example.com/images/sample.jpg" style="max-width:100%;height:auto" />

    The file will be automatic included themes.

    And shows the image where above default sidebar.

    remember,

    $raindrops_actions_hook_message = false;
    
    and wp-config.php
    define('WP_DEBUG', false);

    Need Raindrops 0.994.

    I am sorry to be poor at English.

    Thank you.

    Thread Starter Calliesue

    (@calliesue)

    Hi Nobita! Thank you for your reply. I was able to hide the title pages so thank you soooo much!!

    Quick question though, where do I find wp-config.php? I looked in the editor and could not locate it.

    Thank you for your help! It is much appreciated! 🙂

    Theme Author nobita

    (@nobita)

    wp-config.php

    wordpress install directory/wp-config.php

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Want to make a few tweaks’ is closed to new replies.