Search:

Page 1 of 11 1 2 3 4

Search: Search took 1.00 seconds.

  1. In addition in order-summary.php line 21 reads ...

    In addition in order-summary.php line 21 reads

    <input type="submit" value="<?php printf( __('Continue to %s', APP_TD ), $post_type_obj->labels->singular_name ); ?>" onClick=
    ...
  2. Replies
    8
    Views
    1,346

    You could use body classes. Each page has it's...

    You could use body classes. Each page has it's own body class which you will find if you look in the source code. You will have to look up the body class then you can define it in your stylesheet....
  3. Replies
    27
    Views
    4,673

    [SOLVED] You could use a plugin such as sidebar login...

    You could use a plugin such as sidebar login http://wordpress.org/extend/plugins/sidebar-login/
  4. Replies
    32
    Views
    2,419

    it's in your style.css around line 387...

    it's in your style.css around line 387
    #main-navigation .menu li:hover, #main-navigation .menu li.current-menu-item {
    background-color: #F3F3F3;
    border-radius: 5px 5px 5px 5px;
    }

    the...
  5. Glad it worked ! :-) The plugin seems to be a...

    Glad it worked ! :-)
    The plugin seems to be a nice find btw ...
  6. If you look at the site of the developer there is...

    If you look at the site of the developer there is a codesnippet
    <?
    echo do_shortcode('[poiautomap address=" . get_post_meta($post->ID, 'address', true) . " zoom="15"]');
    ...
  7. Replies
    7
    Views
    645

    If you add #refine-categories {display: none; }...

    If you add
    #refine-categories {display: none; }
    to your style.css it would remove the category section.
  8. Replies
    14
    Views
    1,093

    just delete

    just delete
    <?php if ( $website ) : ?>
    <li id="listing-website"><a href="<?php echo esc_url( 'http://' . $website ); ?>" title="<?php _e( 'Website', APP_TD ); ?>" target="_blank"...
  9. Replies
    14
    Views
    1,093

    If it is only the website link in the listing you...

    If it is only the website link in the listing you could add the nofollow attribute to your single-listing.php

    <?php if ( $website ) : ?>
    <li id="listing-website"><a href="<?php echo esc_url(...
  10. You will find the section in wrapper.php

    You will find the <head> section in wrapper.php
  11. Replies
    70
    Views
    7,727

    Found a nice plugin by scribu called "query...

    Found a nice plugin by scribu called "query multiple taxonomies" http://wordpress.org/extend/plugins/query-multiple-taxonomies/
    It recognizes categories and tags as well as custom post types...
  12. Replies
    4
    Views
    947

    Just change the code as follows

    Just change the code as follows
    <?php if( is_front_page() AND function_exists('easing_slider')) { easing_slider(); } ?>

    then the slider will aapear on the front page only.
  13. You can change this in your settings (moderate...

    You can change this in your settings (moderate listings => uncheck "yes")
  14. You could change the sort order by adding...

    You could change the sort order by adding
    $args['orderby'] = 'title';
    $args['order'] = 'ASC';
    to archive-listing.php right before query_posts( $args );

    so that it reads
    // Don't want to...
  15. Samcy Just did a quick search with my html editor for...

    Just did a quick search with my html editor for "Feature on Homepage".
    Not sure if this covers this specific phrase but there is a line in functions.php ~line 128
    'title' => __( 'Feature on...
  16. Samcy You can adjust this by changing the following...

    You can adjust this by changing the following line in featured.php

    Around line 132 or so look for
    } elseif ( is_front_page() ) {
    $where = 'home';
    }

    replace it with
    } elseif (...
  17. Replies
    13
    Views
    995

    Why are you using theme my login at all? Just...

    Why are you using theme my login at all? Just delete it. I too had theme my login installed when vantage didn't have a themed login page. This is why I know the error. Delete it you don't need it...
  18. Replies
    2
    Views
    478

    See here is a discussion about it...

    See here is a discussion about it http://forums.appthemes.com/category-selection-using-radio-buttons-selection-type-35997/page-2/#post180091
  19. Replies
    12
    Views
    1,198

    re 1 look for #site-title a in your style.css...

    re 1
    look for #site-title a in your style.css (around line 222 and change the heigt from 68px to 120px or something like this

    re2
    not via css .. you would have to alter your header.php

    re3...
  20. Hi Shannon, these are valid points. How about...

    Hi Shannon,
    these are valid points. How about giving the admin two basic options to choose from
    Option 1 (as it is now): allowing listing in one category only plus the option of various price plans...
  21. Replies
    12
    Views
    1,198

    Look in your style.css for #masthead .row {...

    Look in your style.css for
    #masthead .row { margin-bottom: 25px;
    margin-top: 15px; }

    around line 212 or so .. and set the margins to 0 or any other value you like.
  22. I like the idea of the geolocation mapping, it's...

    I like the idea of the geolocation mapping, it's great! Not so sure about the slider. It takes the best space and provides almost no information. I would reduce the height of the slider, maybe half...
  23. Replies
    8
    Views
    1,310

    If you add #site-title a { width: 100%...

    If you add

    #site-title a { width: 100% !important; background-position: center !important; }

    to your style.css it should be centered again.
  24. Replies
    54
    Views
    3,310

    @barukar, I am still getting the error when...

    @barukar, I am still getting the error when trying to login at your site using a username that doesn't exist:
    ...
  25. Just did a test ... you can get the checkboxes...

    Just did a test ... you can get the checkboxes back by uncommenting line 1 in includes/admin/listing-single.php


    // add_action( 'wp_terms_checklist_args', 'va_category_checklist', 10, 2 );
    ...
Results 1 to 25 of 273
Page 1 of 11 1 2 3 4