Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unknown source of textI can inspect source but since I’m not familiar with the content, I wouldn’t know what is intended to be there & what isn’t, I wouldn’t be able to suggest anything. Glad you found a workaround!
Forum: Fixing WordPress
In reply to: Error showing on live page(I’ve seen other people have issues with Juiz Last Tweet, so that could likely be the one)
Forum: Fixing WordPress
In reply to: Error showing on live pageI would recommend deactivating your plugins and then activating one-by-one to try to suss out which one is the culprit. Usually I’ve seen this error message in relation to a plugin that isn’t completely compatible with the latest version of WordPress.
Forum: Fixing WordPress
In reply to: Unknown source of textIs the random string of text on the homepage? Where is it / what is it exactly?
You would have to find the correct selector (ie:
articleor whatever the tag is that you want to change the styling on) & repeat something simliar from above, but using the smaller font-size you’d prefer.Forum: Fixing WordPress
In reply to: Get_terms and meta_query not working& it was working previously?
Wait, do you have a duplicate of your array inside your meta_query array?
Forum: Fixing WordPress
In reply to: four image row with description under it and anchor linksWhat theme are you currently using?
Have you seen this video: https://www.youtube.com/watch?v=sBvEiIL6Blo that shows one route to achieving this with Visual Composer? (Obviously needing some tweaks to fit your specific needs)
Forum: Fixing WordPress
In reply to: youtube videoI don’t see a video on your homepage; are you referring to the slider?
Forum: Fixing WordPress
In reply to: Home page, posts and pages appear doubleI would double check your front-page.php (or index.php or home.php – whatever you have designated as the front page file for your theme)
You might have accidentally replicated a loop that is repeating /pulling all that information in again? Because it’s even repeating the CSS + script files as well.
Forum: Fixing WordPress
In reply to: Embed video not appear bigger then 250px heightIt looks like there is code within your theme to make it 734px width by 551px height.
You could try changing the YouTube embed code to something like:
<iframe width="333" height="250" src="https://www.youtube.com/embed/Yn7skNZkHaU" frameborder="0" allowfullscreen></iframe>but it might still get overwritten by the existing styling CSS in your theme.
Do you have experiencing fiddling with the CSS on your site?
Forum: Fixing WordPress
In reply to: Need help fixing drop down menuI’m not seeing those items have dropdown menus anymore. Did you get this situated?
It could be something that would be fixed by spacing or z-index, but hard to know without being able to see it.
Forum: Fixing WordPress
In reply to: How to change font in Menu?That font is appearing for me on your menu / dropdown – did you get it situated?
Forum: Fixing WordPress
In reply to: get the id of one custom post type item for navAre you doing this within a loop?
Inside the loop you already have a $post object available.
<?php echo $post->post_type; ?>Or if you want to use get_post_type you can pass it the post object you have (so it extracts the one property from it).
<?php echo get_post_type( $post ); ?>Do you have any experience with CSS?
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications
- (put your CSS code in)
- Save
Your CSS code should be something like:
h4 { font-size: 15px; }(or whatever you’d like the font-size to be.
Forum: Fixing WordPress
In reply to: Home page, posts and pages appear doubleDo you have access or experience with your php files?
Was it always like this or were you editing something when it shifted?