Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Making Forum appear in 2 places on my site.I’m not familiar with it – I would recommend trying their support forums (https://bbpress.org/forums/)
Forum: Fixing WordPress
In reply to: How do I display the current post's taxonomies?I think you might need a foreach type of loop involved in there somewhere.
Something like:
<?php $terms = get_terms('my-taxonomy-name'); foreach ( $terms as $term ) { echo $term->slug.' '; } ?>to cycle through.
Are you placing this on a specific php page? Inside or outside a loop?
Forum: Fixing WordPress
In reply to: Trouble adjusting content / text widthIt looks like your theme uses rows/columns in the markup itself, rather than solely through the stylesheets alone (ie: the class name ‘span12’ will make it span 12 columns – ‘span4’ will make it span 4, etc.)
Do you know how those class names are applied? Is that something that is only accessible through the php files or do you have control over that somewhere in the Theme’s dashboard as well?
Forum: Fixing WordPress
In reply to: Posts on landing pageIt would likely depend on what theme you’re using and if that theme’s main page template includes a loop to bring in posts.
You could also change what your landing page is – http://codex.wordpress.org/Creating_a_Static_Front_Page
Hope that helps!
Forum: Fixing WordPress
In reply to: Making Forum appear in 2 places on my site.I think it would likely depend on what you’re utilizing for your forum / how that data is being generated.
Forum: Fixing WordPress
In reply to: No photos on MobileIt looks like the photos are appearing okay on my end on mobile; did you get this squared away or are they still not there on your end?
Forum: Fixing WordPress
In reply to: photo appearanceIt would be coding within the themes files. If you don’t have experience or the ability to ‘practice’ on a local copy – I wouldn’t recommend editing the live site as it could cause an error / potentially ‘break’ it.
Perhaps you could contact the theme’s creators?
Forum: Fixing WordPress
In reply to: Do not show one of the taxonomies on archive pageIt sounds like you would need to create a custom query to exclude that information.
Something like:
$customArchives = new WP_Query( array( 'post_type' => 'properties', // only query Properties post type 'order' => 'DESC', 'tax_query' => array( array( 'taxonomy' => 'type', // whatever your taxonomy-type is actually named 'field' => 'slug', 'terms' => 'sold', // exclude sold posts in the news-cat custom taxonomy 'operator' => 'NOT IN') ), ) );Hope that helps a little in getting you off to a good start.
Forum: Fixing WordPress
In reply to: Image alt and description tagsAre you utilizing a plugin for the gallery functionality?
Forum: Fixing WordPress
In reply to: some file doesn't existIt sounds like the database it is trying to connect with doesn’t have the necessary tables it is looking for.
Forum: Fixing WordPress
In reply to: Editing/Customizing the HomepageIt could be built in to the actual template files or perhaps organized within the theme in a different area? Do you have experience looking at/editing the php files?
Forum: Fixing WordPress
In reply to: photo appearanceIt’s likely the theme has the image sizing + cropping options set in a certain way in the functions.php (or similar file). Do you have access or experience with editing those?
Forum: Fixing WordPress
In reply to: Font Color Will Not ChangeHow did you fare? Get it situated @recon1512?
Forum: Fixing WordPress
In reply to: Edit Image Button MissingWhat type of file are you uploading to edit? Is it a JPG/JPEG?
What theme are you using?
Is ‘uncategorized’ still checked as well?