Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • Kikemonk

    (@kikemonk)

    I recommend you the eShop wordpress plugin, is quite useful and easy to install on any theme

    Thread Starter Kikemonk

    (@kikemonk)

    Yeah, I have solved it, I needed to call the jquery directly but now is working just fine

    Thread Starter Kikemonk

    (@kikemonk)

    Yeah I have included both even so it′s not working ??

    Forum: Themes and Templates
    In reply to: No Home button
    Kikemonk

    (@kikemonk)

    Also you can add a “custom” home button by just adding where the “wp_list_pages ()” is a

    • that says:
    • Home
    Kikemonk

    (@kikemonk)

    Hi I have done something like that on the site https://www.wizdome-mexico.com.

    Is quite easy, you just need to style each element with a div, for example

    .widgettitle1{
    /* your widget title style for categories here */
    }

    .cat_sidebar{
    /* Your style for the categories widget */
    }

    .widgettitle2{
    /* your widget title for links */
    }

    .links_sidebar{
    /* Your Style for the links widget */
    }

    and into your functions.php add this

    <!– The style for the sidebar categories –>
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(‘name’=>’cat_sidebar’,
    ‘before_widget’ => ‘<div class=”cat_widget”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<div class=”widgettitle1″><h1>’,
    ‘after_title’ => ‘</h1></div>’,
    ));

    <!– The Style for the sidebar links –>
    if ( function_exists(‘register_sidebar’) )
    register_sidebar(array(‘name’=>’links_sidebar’,
    ‘before_widget’ => ‘<div class=”links_widget”>’,
    ‘after_widget’ => ‘</div>’,
    ‘before_title’ => ‘<div class=”widgettitle2″><h1>’,
    ‘after_title’ => ‘</h1></div>’,
    ));

    and that′s it, if you need any more support feel free to contact me

Viewing 5 replies - 1 through 5 (of 5 total)