wpismypuppet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hover thumbnails – tooltips – need helpI am one of those guys who doesn’t mind helping out and teaching people how to do things… but I can’t just do the work for you. That’s against my practice 🙂
If you aren’t familiar with how WordPress works, you should do a Google search for WordPress training for beginners. You’ll find tons of tutorials. That’s a good place to start.
What you are asking for is medium to advanced customization… you need the basics before you get to where you want to be, or you need to hire someone. Sorry I can’t be more helpful.
Forum: Fixing WordPress
In reply to: Navigation for mobile siteYou are welcome 🙂 Glad it worked out.
Forum: Fixing WordPress
In reply to: Hover thumbnails – tooltips – need helpWell I’m sorry to say if you are going to edit your .php files then you’ll need to learn HTML and CSS. Check out the other link I gave you and see if you can implement that method.
You already have post thumbnails showing on the site, so ignore the first few sections of this link… but the rest of the page will explain what code you are looking to modify to get css tooltips to work:
Forum: Fixing WordPress
In reply to: Comments Not AvailableYou are welcome!
Forum: Fixing WordPress
In reply to: Inserting a PDF into a PostYou are welcome
Forum: Fixing WordPress
In reply to: Navigation for mobile siteYou are going about it the wrong way I think… you should use WordPress’ built in wp_nav_menu() to create your navigation. It’s powerful, and you can get it to look like your list shown. The reason for using WordPress’ menu it it’ll output a class called “current-menu-item” on the
<li>of the active menu item (unless you change the output to make them options instead). And of course the added benefit of changing your menu on the fly through the admin interface.Using jQuery, you can insert your selected=”selected” by doing something like:
jQuery('nav option').each(function() { if(jQuery(this).hasClass('current-menu-item')) { jQuery(this).attr('selected', 'selected'); } }This isn’t tested jQuery, but it should point you in the right direction.
Forum: Fixing WordPress
In reply to: Comments Not AvailableNo no no no no… Undo that at once! 🙂
The files you are going to be looking for will be located in public_html/wp-content/themes/[name of your theme]/
Replace [name of your theme] with the name of your theme. You should find an index.php file there, but now that I know you are looking in the wrong place, you might find single.php and others 🙂
Forum: Fixing WordPress
In reply to: Need Help!! Moved WordPress data to another server.For what it’s worth, I can access every page on your site. Though your URL structure is showing http://www.evangelyze.net/index.php/about/ for example. But all the pages are showing without a 404 problem.
Try dumping your browsers cache?
Forum: Fixing WordPress
In reply to: notice from hosting about timthumb fileTim Thumb is actually a third party PHP script that many people use (or used) to manipulate photos on the fly without altering the original file. Here is a story about the issue found with Tim Thumb related to WordPress:
http://markmaunder.com/2011/08/01/zero-day-vulnerability-in-many-wordpress-themes/
In any event… there is no real way for you to know about these exploits unless you keep up-to-date on the newest technology. Even then it’s a crap shoot. There are a ton of WordPress plugins that scan your install for potential exploits…
If you are really concerned about your site and possible problems, do a search for “hardening wordpress” in Google. Our company uses a set of plugins to lock down our install and monitor exploits… but again, it’s someone else’s plugin… that in itself could be an exploit!
Best of luck!
Forum: Fixing WordPress
In reply to: Conditional wp_enqueue with is_page_templateI don’t believe that is_page_template() will accept an array… only a string. See here:
http://codex.wordpress.org/Function_Reference/is_page_template
So basically you’ll have to change this line:
if(is_page_template( array('archive-news.php', 'archive-exhibitions.php', 'category-art-fairs.php', 'category-artist-news.php', 'category-events.php', 'category-gallery-news.php', 'category-upcoming.php') )) {to:
if(is_page_template( 'archive-news.php' ) || is_page_template( 'archive-exhibitions.php' ) || ...And the same with the other if statement.
Forum: Fixing WordPress
In reply to: Warning message from wordpressini_set() is a PHP function, not a WordPress feature. One of your files, /home/lpphotos/public_html/wp-content/themes/photocrati-theme/template-cart.php, is using the function to attempt to change the php.ini default settings. Your hosting company has disabled that feature for security reasons, and for good reason… it is a security problem 🙂
Find out from your hosting company the appropriate way to change the default php.ini file and make the ini_set() functions work there instead. Here is a link in case it helps:
Forum: Fixing WordPress
In reply to: Comments Not Availablesingle.php is the page that would show a single post… Usually in a blog you’d have a “page of posts” showing a list of posts and a short excerpt. When you click on one of the posts, you are taken to single.php to see the whole post.
If you don’t have a single.php, then the single posts would display on index.php by default.
If you are working with pages, and not posts, then you should have a page.php file. If you don’t have that, pages will use index.php by default.
Check out the WordPress Template Hierarchy for more info on what items use what files to be displayed!
Forum: Fixing WordPress
In reply to: Hover thumbnails – tooltips – need helpHere is a plugin that might do the trick:
http://www.wpbeginner.com/plugins/how-to-add-tooltip-in-your-wordpress-posts-and-pages/
Otherwise you’ll have to learn HTML and CSS… Here is a link that has a lot of good step-by-steps to help you out in case the plugin isn’t what you want:
Forum: Fixing WordPress
In reply to: Inserting a PDF into a PostHere’s a nice video explaining it all!
http://www.youtube.com/watch?v=HdMsZq4GS8Q
Let me know how it works out for you…
Forum: Fixing WordPress
In reply to: Comments Not AvailableYou need to add:
<?php comments_template(); ?>Where ever you want comments to appear! The checkboxes just allow for that to happen, but if you’re missing that line of code, it’ll never show anyway. Typically it’s found at the bottom of your single.php page, but it can be placed anywhere you want people to leave/read comments.