CarletonU
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Don't see search field for List SearchMarking as resolved. Thanks Again!
Forum: Plugins
In reply to: [Gravity Forms Sticky List] Don't see search field for List Searchfried_eggz,
Thanks for the quick reply!
Good call. I should have viewed source before posting. We have another class=”search” which is hidden until the icon is clicked.
Might consider giving that class a prefix, as I imagine class ‘search’ is pretty common.
Thanks again.
Danny
Forum: Plugins
In reply to: [Front-end Editor for WordPress] Custom Fields support+1
Forum: Fixing WordPress
In reply to: Make main navigation bar transparent?On line 84 of your stylesheet you have:
ul.menu { background-image: -webkit-linear-gradient(top, #ffffff, #ffffff); }If you change it to the following the background image will show through:
ul.menu { background: transparent; }Forum: Fixing WordPress
In reply to: Open link in a new window/tabIn the link, add target=”_blank”
It would look like this (I’ve inserted it right before the View Larger Map text:
<a href="https://maps.google.com/maps?f=q&source=embed&hl=en&geocode=&q=LaSalle+Yacht+Club+S+68th+St,+Niagara+Falls,+NY+14304&aq=&sll=43.074155,-78.985863&sspn=0.027461,0.077162&g=S+68th+St,+Niagara+Falls,+Niagara,+New+York+14304&ie=UTF8&hq=LaSalle+Yacht+Club&hnear=S+68th+St,+Niagara+Falls,+Niagara,+New+York+14304&t=m&ll=43.073951,-78.985627&spn=0.004232,0.006416&z=16&iwloc=A" style="color:#0000FF;text-align:left" target="_blank">View Larger Map</a>Forum: Fixing WordPress
In reply to: Need Help Changing Site AppearanceHey Brian,
In the admin area you should be able to change your title and subtitle by finding the navigation item named “Settings”. Both options are in fields at the top of the settings page.
What other aspects are you looking to change? Do you have a link to your site that you can share? Also, do you know which theme you are using on your site?
As far as the SEO goes, the WordPress SEO plugin is really good, but search engines could take a bit of time to index the site. There are also a variety of factor in how your site is ranked, including how you configure the SEO plugin, as well as well written post titles, content that contain some keyword that you think people may search for to bring them into your site, amongst others.
If you want to learn more about SEO and configuring the plugin I would recommend reading this post by Yoast, and following up with more searching for other SEO tips and tricks.
Forum: Fixing WordPress
In reply to: wanting blog posts to stay on same pageSeems you are loading all of your blog posts into an iframe within you flash site. Flash does not provide the ability to have direct links into an article once a users clicks though to is, so all you articles, including the listing would use the same URL (http://www.perfecthealthconsultingservices.com/healtharticles.html)
Because the sharing tools are a part of the WordPress theme that is being feed into the iframe, they are using the direct URLs to the articles and will load into the separate WordPress install which is using the Foghorn theme from WP Theming.
If you want to create a unified look and feel across your site, I would recommend one of two things:
1. Find a theme that you like and use WordPress to power your entire site. The big benefits here are the increased usability, and accessibility that flash lacks
2. Create, or find someone to create, a custom WordPress theme to match the overall look of your flash site
Forum: Fixing WordPress
In reply to: tricky redirect questionIf you want to manually add redirect for the 60 some items, one way you can do it is to add each as a line to your htaccess file as follows:
Redirect /wp/pagename http://www.sitename.com/pagename
There are ways to do all URLs with one command, but I haven’t done this before. From what I understand, something like this could work:
RewriteRule ^wp/(.*)$ wp/$1 [L,QSA]
I found that here, if you want to check it out: http://stackoverflow.com/questions/7473116/how-rewrite-a-url-slug-to-a-parameter-using-htaccess
Forum: Fixing WordPress
In reply to: vslider only on specific / home pageYou’ll need to use a conditional to specify that it only loads on the homepage specified in your reading settings. The following code should work for you:
<div id="header-slider"> <div id="slider"> <?php if (function_exists('vslider') && is_front_page() ) { vslider('vslider_options'); } ?> </div> </div>More information about WordPress conditional, specifically the is_front_page item, see http://codex.wordpress.org/Conditional_Tags#The_Front_Page
Forum: Fixing WordPress
In reply to: Turn off footer and move the header?Because this is a paid service, I would suggest checking in the photocrati members area first and you may find your answer there: http://www.photocrati.com/questions/
Forum: Fixing WordPress
In reply to: setting website from private to publicDo you mean the privacy settings? It would have been an option you could uncheck when first installing WordPress.
If so, and providing you’re using WP 3.5.1, go to Settings > Reading and you’ll see an option for Search Engine Visibility.
Forum: Fixing WordPress
In reply to: URL Rewrite for taxonomiesDo you have a URL that I can look at?
Forum: Fixing WordPress
In reply to: How to change PDF Category Order on Download PageHow is the content on this page being generated? Is it a custom template?
Forum: Fixing WordPress
In reply to: Image, video and team member shortcode helpWhat theme are you using, and where did you buy it? Do you have a URL to look at?
I would recommend checking the site where you bought the theme to see if there is any support available.
Forum: Fixing WordPress
In reply to: Media uploading brokenHave you tried deactivating all your plugins, activating Twenty Twelve and seeing if the issue still exists?