csloisel
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Second menu doesn't load on category pagesSince you have a paid theme, you should contact their support: http://www.themesindep.com/support/?envato_item_id=4923427
Forum: Fixing WordPress
In reply to: How to add a url to the footer textIt looks like the copyright text is a setting for your theme.
Forum: Fixing WordPress
In reply to: How to add a url to the footer textYou need to modify your footer template, not the CSS file. Look for a file called footer.php in your theme directory.
Forum: Fixing WordPress
In reply to: Customers cannot create an accountThis is a custom form that is either part of your theme or part of a plugin. You are probably going to have to go to whoever created the form for support.
Forum: Fixing WordPress
In reply to: Customers cannot create an accountDo you have a link to said form?
Forum: Hacks
In reply to: wp_dropdown_categories in a template fileTry using an array instead of a string:
array(0, 9, 12, 43)Forum: Fixing WordPress
In reply to: WP RSS Aggregator XML style information problemThat message is normal, it actually means you have valid rss, I’m not sure what you are looking for.
Forum: Fixing WordPress
In reply to: Hyperlink gone crazyThats not proper syntax for html tags, if you close it properly with
</a>it should fix it.Forum: Fixing WordPress
In reply to: How to insert the id category in this code?<?php // get warp $warp = Warp::getInstance(); // load main template file, located in /layouts/category.php echo $warp['template']->render('category-'.get_queried_object_id());Forum: Hacks
In reply to: Returning arrayHave you tried
$ukerrors = check_for_errors($qdate, $salesman_id);?Forum: Hacks
In reply to: `get_posts` by months?It would help to see the full code you are using to do the query.
Forum: Fixing WordPress
In reply to: How to insert the id category in this code?get_queried_object_id()should work on that template.Forum: Fixing WordPress
In reply to: How to limit a search to certain kinds of pagesI could be wrong but i’m 99% sure this won’t be able to accomplished without modifying theme code, it will at the very least need a snippet of code on the functions.php. The problem is you can’t query meta fields from the front end, for obvious security reasons.
Forum: Fixing WordPress
In reply to: change a menu titleThat looks like something that is probably hardcoded in a template file, I would reach out to your developer for help.
Forum: Fixing WordPress
In reply to: Media Library Attributes in the WP Database?Oh you are referring to the post display settings of an image. Those are just stored in the post content, there isn’t a DB field where you can specifically target those. All that does is change the markup of the post content.