Hi ogoor,
I just uploaded the latest version of coloured. At the bottom of the theme settings page, under Appearance, you will find an option to load the extended character set for the fonts. Let...
Hi ogoor,
I just uploaded the latest version of coloured. At the bottom of the theme settings page, under Appearance, you will find an option to load the extended character set for the fonts. Let...
The maps in Vantage are widgets. The big map is called "Vantage - Multiple Listings/Events Map" and goes in "List Page Top Sidebar". The single listing and event maps are called "Vantage - Single...
Hi robbo, any chance you could send me a link to your site? Also, which browser are you using?
Thanks Gina, it should be fine now.
@affluent, sorry I couldn't be of more help. Unfortunately I'm not in a position to start any new projects and I'm essentially a front-end developer so it's not really my area anyway. I hope you find...
Hi Gina,
Thanks for letting me know. I'll fix that ASAP.
Andrew
Hi Michael,
Coloured is a child theme for Vantage which means that you also need the Vantage directory theme to work. Think of a child theme as simply a fresh coat of paint on the parent theme....
That's a little trickier because your schools and "Businesses" are both listings. You could use the language pack to translate "Businesses" to "Businesses/Schools"
You can't copy files in subdirectories of Vantage into you child theme the way you can with files in the main directory.
Try this in your child theme's function sheet;
/* ============ Extra...
Do those images exist in your child theme's images folder? If not, that would be why you are getting the 404 error.
Lines 588-590 in your style sheet is causing the icon to disappear.
#search-submit:hover {
background-position: center -25px;
}
Remove it or comment it out.
I've had no problems yet.
In single-listing.php move lines 64-66
<div class="single-listing listing-faves">
<?php the_listing_faves_link(); ?>
</div>
to lines 97-101
<section id="overview"...
This is the culprit (CSS, not jQuery or JS);
body.single div#content.container div#content-mid.row div#content-inner.rounded div#main article div#listing-tabs section#overview {
display: none;
}...
Copy single-listing.php into your child theme, then on line 76 (current version) replace
<?php the_contact_listing_owner_button(); ?>
with
<?php if ( is_user_logged_in() )...
Lots of people have mentioned this before. The rules have changes for HTML5. http://webdesign.tutsplus.com/articles/the-truth-about-multiple-h1-tags-in-the-html5-era--webdesign-16824
...
No option in Vantage yet. If you are using a child theme, put this in your functions.php
/* ========== Remove Admin Bar ========== */
add_filter( 'show_admin_bar', 'my_hide_admin_bar', 1000 );...
http://webdesign.tutsplus.com/articles/the-truth-about-multiple-h1-tags-in-the-html5-era--webdesign-16824
I'll write a tutorial on this when I get some spare time. It's not too difficult.
Here's the quick (unfinished) version. Create a file "form-registration.php" in your child theme place this code...
I'm using this; http://wordpress.org/plugins/wp-image-size-limit/
Unfortunately it only works for images so if you are using file uploads in the custom forms it wont apply to that.
I submitted the idea to the ideas exchange. You could vote for it: http://ideas.appthemes.com/vantage/seperate-search-widget-just-for-the-blog-articles-3586/
Otherwise, you might consider using a...
I decided the other day that I wanted an easy way to find out which of my registered users had actually been bothered to create a listing. I am about to finish a major redesign of my site and thought...
In the child theme. You can override any CSS in the child theme.
The code in green is the bit you add, and you add it to header.php, line 29 & 42 in Vantage 1.3.
That's a good idea. I can't believe I didn't think of that before.
It's not CSS though, it's HTML.
Find the inputs in header.php and add a "placeholder" attribute to it, eg.
<input...