Search:

Page 1 of 2 1 2

Search: Search took 1.00 seconds.

  1. [SOLVED] It looks like vantage caters for "LinkedIn" and...

    It looks like vantage caters for "LinkedIn" and also a whole lot more social links, but they are not activated.

    Have a look in: "\vantage\theme-framework\kernel\social.php"

    and you will see all...
  2. Replies
    461
    Views
    53,134

    Sticky: Sorry for the delay, this has now been done,...

    Sorry for the delay, this has now been done, thanks :)
  3. [SOLVED] After some digging, I was able to figure out how...

    After some digging, I was able to figure out how to add additional fields in the Customer Information area. It's not permanent because it involves editing of vantage/includes/listing-form.php, so if...
  4. [SOLVED] Here is what I use to prevent a user from...

    Here is what I use to prevent a user from accessing the wp-admin, they are redirected to the dashboard.

    Place the following code into "\vantage\functions.php" above the "appthemes_init();" line:
    ...
  5. [SOLVED] Yes, this is a problem. You can fix this by...

    Yes, this is a problem.

    You can fix this by changing the following in "single-listing.php"


    <section id="reviews">
    <?php get_template_part( 'reviews', 'listing' ); ?>
    </section>...
  6. Replies
    3
    Views
    4,665

    Sticky: Guide to Customizing Vantage

    Here are a bunch of useful tutorials on everything involving mods to Vantage. By providing this list, we hope to give users a quick way to find common-modifications. AppThemes created tutorials will...
  7. Replies
    16
    Views
    1,181

    With Yoast. You can have the Go to...

    With Yoast.

    You can have the

    Go to Yoast>Titles & Metas>Post Types>Listings and insert

    %%sitename%%--%%title%%--%%ct_listing_category%%

    The ct_listing_category part is the listing's...
  8. Replies
    23
    Views
    7,274

    Replace this in wp-admin.php: With this: ...

    Replace this in wp-admin.php:



    With this:



    - - - Updated - - -
  9. Replies
    30
    Views
    1,704

    Dimitris There is a change log txt file with the download.

    There is a change log txt file with the download.
  10. Hey there Danyz, I was able to figure a work...

    Hey there Danyz,

    I was able to figure a work around out for this - feel free to try it and see if it works for you.

    1) Create a child theme
    2) In your new child theme folder, create a new file...
  11. More intelligent redirects for new registrations and logins

    Hey all,

    Maybe I'm missing something, but I didn't like how when a new business registers or a guest user attempts to write a review on a listing, the following happens:
    User . . .
    1) Clicks on...
  12. Replies
    4
    Views
    727

    Change "Howdy, Username"

    Just found a little snippet of code here that lets you customise the "Howdy, Username" in the admin bar. I don't if this was bothering anyone else but it seemed to me a bit informal for a serious...
  13. Replies
    21
    Views
    2,414

    You can accomplish this by adding the following...

    You can accomplish this by adding the following function to your child themes function.php file


    /* Do not allow non admins to access wp-admin */

    add_action( 'init', 'blockusers_init' );...
  14. Replies
    21
    Views
    2,414

    Updated Login / Register Redirect

    Well I finally updated mine to 1.1.2 (after most of the bugs were worked out) and now here is the correction to my previous redirect hack. All you need to do is go to the following template files...
  15. Tutorial: Featured listings in search results.

    I have been able to successfully edit Vantage to show the listings that are "Category Featured" in the search results as featured.

    I know this was a must for my site, and may be for others. Please...
  16. There is a small revision to the above code that...

    There is a small revision to the above code that is necessary, or else search does not work correctly.

    Change this:

    else :
    $args = $wp_query->query;
    $args['orderby'] = 'title';
    ...
  17. Hi there, You're right, I can confirm those...

    Hi there,

    You're right, I can confirm those quirky behaviors. I've fixed it below:

    You'll need to add the following before the query_posts( $args ); inside the if( $featured || is_page() ): ...
  18. Hi all, I wanted the following: - Listings on...

    Hi all,

    I wanted the following:
    - Listings on front page are sorted by newest (default)
    - Listings in categories are sorted by A-Z

    I accomplished it by modifying /vantage/archive-listing.php....
  19. Replies
    10
    Views
    1,053

    I figured it out. Registering sidebars is in the...

    I figured it out. Registering sidebars is in the includes/core.php lines 194-203. I simply added a couple more under the original ones and placed <?php dynamic_sidebar( 'your_registered_sidebar' );...
  20. 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...
  21. 'Alphabetical' Should Be A Business Listing Order Placement Option

    It would be nice if you could select 'alphabetical' as one of the listing placement order options. The new 'oldest', 'newest', and 'random' orders are very useful for classifieds (ClassiPress) but...
  22. Replies
    70
    Views
    7,720

    It goes straight to the listing owner by default...

    It goes straight to the listing owner by default but you can set it to go to the admin (or both). It also adds a new tab in the dashboard where you can see all messages sent from every form.
  23. Replies
    23
    Views
    1,874

    Ok. For the featured ads, the change should be: ...

    Ok. For the featured ads, the change should be:

    Featured.php Lines 27-29 (Mod in BOLD)

    $args = array(
    'post_type' => VA_LISTING_PTYPE,
    'posts_per_page' => VA_MAX_FEATURED,
    'orderby'=>...
  24. [SOLVED] The quick fix before the release is in...

    The quick fix before the release is in includes/template_tags.php:

    Find this:



    function the_refine_category_ui() {
    require_once ABSPATH . '/wp-admin/includes/template.php';

    ob_start();
  25. Replies
    21
    Views
    2,414

    To Redirect the user after logging in. Go to...

    To Redirect the user after logging in.
    Go to /vantage/includes/core.php and find (around line 219):




    function va_redirect_to_front_page() {
    if (!isset($_GET['redirect_to'])) {...
Results 1 to 25 of 38
Page 1 of 2 1 2