TheMarque
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove Leave a Reply/CommentsYou need to go to the editor and find the page template (probably page.php) and delete this code from it:
<?php comments_template(); ?>
Forum: Themes and Templates
In reply to: Archive links not workingTry this:
<?php wp_get_archives(apply_filters(‘widget_archives_dropdown_args’, array(‘type’ => ‘monthly’, ‘format’ => ‘option’, ‘show_post_count’ => $c))); ?>Of course, the real problem might be that you do not have an archives template. Do you? (Check in Appearance >Editor)
Forum: Themes and Templates
In reply to: WordPress theme helpIf you want the logo more right look in CSS and change to something like
#logo { padding-right: 15px; float: left; margin-left: 23px; }
As for search bar, lookin style.css again and change:
#search-form { float: right; background: url(images/search-bg.png) no-repeat; width: 127px; height: 26px; margin-top: 7px; margin-right: 50px; }
Forum: Themes and Templates
In reply to: WordPress theme helpLogo inward as in towards the middle of the top or downwards?
Forum: Themes and Templates
In reply to: Twenty TwelveWordPress 3.4 is due this month, so I am assuming it will be out with that.
And when you are referring to changing the text over to a logo, yes it is possible, what theme are you using?
Forum: Fixing WordPress
In reply to: Excluding author box for certain authors on postsHey, perfect, I was actually just now trying closing of the tags and also using echo ‘authorbox code’;. However, I had put the closing } before the second <?php
And, this code works! I just had to put a space between <?php and } but it works.
And actually, it blocks out the code on every page except UserID 3. So I just reversed it and it works so well. Thanks for your help!FYI, here is what I ended up doing:
<?php $getid = $posts[0]->post_author; if($getid == 3){ // Do Nothing } else{ ?> // Do something that is specific for user with ID 3 <div id="authorbox"> <?php if (function_exists('get_avatar')) { echo get_avatar( get_the_author_email(), '80' ); }?> <div class="authortext"> <h4>About <?php the_author_posts_link(); ?></h4> <p><?php the_author_description(); ?></p> </div> </div> <?php } ?>
Forum: Fixing WordPress
In reply to: Excluding author box for certain authors on postsThanks for responding!
Yes, when I try that code it has a syntax error
Parse error: syntax error, unexpected '<'
Forum: Plugins
In reply to: [Plugin: Zone Manager (Zoninator)] CANNOT figure this out.Any tips, anyone? ANY one? Here this is kind of an example of what I am wanting
[Featured Content area]
_______divider_______
—one 1– –Zone 2–
———-Zone 3———-
———-Zone 4———-
__________________________
All the other posts
All the other posts
All the other posts
All the other postsAnyone? Anyone (i hear an echo!)
Forum: Plugins
In reply to: Looking for product gallery pluginFor those who want to know, i did this on my own…I used the awesome FoxyShop plugin and very heavily modified and customized it to my liking. Its awesome. Just want I needed
Forum: Plugins
In reply to: 404 error only on stats pageI am having the exact same annoying problem on all of my WordPress sites (7 of them). 404 page for specific day site states.
Forum: Plugins
In reply to: Looking for product gallery pluginI am desperately looking for one as well. Dont have the time to learn how to build one.
Forum: Plugins
In reply to: Simple Product Gallery?C’mon! Doesn’t anybody have ANYTHING to say?
Forum: Plugins
In reply to: Simple Product Gallery?So…nothing. Gotta try to make it myself?
Forum: Plugins
In reply to: Simple Product Gallery?Ideas, anyone? Would I be better off creating my own custom plugin version of a image gallery?
Forum: Fixing WordPress
In reply to: WordPress hackedMy website was also hacked this week and I’ve been spending the last two days fixing it. I think I finally got is resolved. They injected links into alot of the theme files and then iframe injections into some posts. It was really weird. I removed the admin user, changed the passwords, and added alot of plugins that were suggested in this blog: https://www.aboutonlinetips.com/wordpress-security-plugins/
@saaqi If you wanted a plugin to help with securing your log in, Stealth Login, Login LockDown, and Chap Secure Login are your best options.