Search:

Search: Search took 1.00 seconds.

  1. I can see the same problem with your tag links. ...

    I can see the same problem with your tag links.

    Go to WP->settings->permalinks and check your Vantage Custom Post Type & Taxonomy URLs

    If there is an listings/category and listings/tag remove...
  2. Replies
    3
    Views
    272

    [SOLVED] I would just try re-uploading the logo via...

    I would just try re-uploading the logo via wordpress admin first (Appearances - Header) and see if that helps. It worked for me when I updated to v1.1
  3. Replies
    3
    Views
    272

    [SOLVED] They change the logo name and it now has the name...

    They change the logo name and it now has the name vantage-logo.
    Before it was icon-rolodex + logo

    So, just rename your logo to vantage-logo.png
    You will lose the rolodex though.

    If you wanna...
  4. Replies
    16
    Views
    1,849

    Hi scorzaze, Here is a fix to the code you...

    Hi scorzaze,

    Here is a fix to the code you posted that wasn't working. Note you will still need to style the <p>.


    <div class="section-head">
    <?php if ( is_tax( VA_LISTING_CATEGORY ) ) { ?>...
  5. Hi Scorzaze, I would recommend to keep a private...

    Hi Scorzaze, I would recommend to keep a private changelog where you take notes about the changes in the theme files which you put in your child theme.
    If those files change in the parent theme you...
  6. This is indeed strange. Not sure if this is...

    This is indeed strange. Not sure if this is related to the problem but in your style.css of your childtheme you have the following
    @import url("../vantage-child/style.css");
    @import...
  7. Replies
    16
    Views
    1,849

    Hi scorzaze, What if you put unaltered...

    Hi scorzaze,

    What if you put unaltered versions of all of the files you listed in your child theme, basically, make the child theme be the same as the normal vantage theme.

    Also, can you make...
  8. You as admin can still enter your wordpress...

    You as admin can still enter your wordpress backend via the adminbar at the top of your site. There is a menu item dashboard in the dropdown menu
    (or just by adding wp-admin to your url:...
  9. [SOLVED] You can import red.css just like the normal...

    You can import red.css just like the normal style.css at the beginning of your stylesheet in your child theme

    @import url("../vantage/style.css");
    @import url("../vantage/styles/red.css");
    ...
  10. I don't think that this file can be included in a...

    I don't think that this file can be included in a child theme (since this is from a subfolder and not a regular theme file). So, if a new version comes out it will have to be added again.
  11. [SOLVED] I can not reproduce this problem on my test site,...

    I can not reproduce this problem on my test site, it may be that the problem is occurring only in the child theme.

    Check the changelog:
  12. [SOLVED] The idea of child themes is that you can create a...

    The idea of child themes is that you can create a new theme based on your parent.So, your child's theme 'style.css' should override your parents.This means that all colors/formats you change should...
  13. Replies
    8
    Views
    1,336

    I tested the code gloyns gave and it works fine....

    I tested the code gloyns gave and it works fine. You guys got the error because the code is not in lines 13 to 15.

    Open archive-listing.php file. Look for this code:



    <h1><?php _e(...
  14. Keep in mind Admin can add additional category in...

    Keep in mind Admin can add additional category in the using "quick edit" in the listing screen. Possibly could offer this as an additional service, or on request.
  15. If you used the dev version could it be that your...

    If you used the dev version could it be that your vantage parent theme folder is called vantage-dev?
    Then you would either have to rename the folder to vantage or change
    Template: vantage
    to...
  16. Replies
    4
    Views
    509

    The major concern with Shared hosting is what the...

    The major concern with Shared hosting is what the limit of webspace is set per hosting account, i am lucky enough as i have unlimited Web space so i don't have to worry about that, but even with...
  17. Nah, I wouldn't say it'll be null - but it might...

    Nah, I wouldn't say it'll be null - but it might require some tweaking; If it's any consolation, we have to do it for all our child themes on every new release. This is why code commenting /...
  18. Replies
    2
    Views
    348

    This is defined in functions.php define(...

    This is defined in functions.php
    define( 'VA_MAX_FEATURED', 5 );

    should be 5 by default.
  19. It is possible. You just need to create a new...

    It is possible. You just need to create a new folder and insert a css file style.css and start it with
    /*
    Theme Name: childtheme-name
    Author: you
    Template: vantage
    Version: ...
  20. Replies
    10
    Views
    1,766

    Just remove the sidebar from your page.php and...

    Just remove the sidebar from your page.php and make it a template:

    <?php
    // Template Name: full
    ?>
    <div id="main">

    <?php while ( have_posts() ) : the_post(); ?>
    <article id="post-<?php...
Results 1 to 20 of 20