jkovis
Forum Replies Created
-
How about something like this?
Try going to your theme’s comments.php and removing
<?php comment_form(); ?>at the bottom of the page. If your theme doesn’t have a comments.php file create an empty one.Forum: Fixing WordPress
In reply to: Shopping Cart Button ErrorLooking at the widget html of the “Shopping Cart” button it looks like it’s not receiving the correct URL of the cart (I trimmed some code so it’s more readable here):
<button id="addto2" class="positive" onclick="window.location.href = "http://www.imagema.com/blog/?page_id="">Shopping Cart: 1 item</button>Are you supposed to set that URL in the widget?
Can you post a link to a page where this is happening and the entire single-news.php file?
Forum: Fixing WordPress
In reply to: Admin Panel CredentialsIt should have asked you for a password when you created the account.
Have you tried entering your email into world-articledirectory.com/wp-login.php?action=lostpassword ?
For your sake, don’t modify core WordPress files…future upgrades will wipe out any changes you make and/or break your site.
Instead, log into the WordPress admin and go to Settings -> Discussion (the URL will be your-site-url.com/wp-admin/options-discussion.php). Then check off “Allow people to post comments on new articles” and save.
Forum: Fixing WordPress
In reply to: Tag count?What i want to show is total tag count for a post.– I guess I’m not understanding what you’re trying to do.
For example, say a post is tagged “WordPress”, “CMS”, and “PHP”. Are you wanting to display something like “This post has 3 tags”?
If that is the case the get_the_tags() will work since it returns an array of objects, one object for each tag assigned to the post. Have you tried something like:
$post_tags = get_the_tags(); $tag_count = count($post_tags); if ( $tag_count ) { echo "This post has $tag_count tags"; } else { echo "This post does not have any tags"; }Forum: Fixing WordPress
In reply to: Moving a blogI just went to the site and all the /es links are working for me (for example, I can access immfinancial.com/es/tag/factoring-definicion/).
Can you check and verify if it’s working for you or not?
Forum: Fixing WordPress
In reply to: Redirect causing 403 errorGlad to hear. I knew it was Bad Behavior because there was a link that led me to a documentation page describing why the 403 page appeared.
Please mark this issue as resolved.
Forum: Fixing WordPress
In reply to: DIfference in header on index.php and single.phpIs there not a plugin option page in the WordPress admin that looks like this where you can set custom CSS styles?
Forum: Fixing WordPress
In reply to: blank white page (please help)and about the php sorryi don't know what i'm using– You can set your php version in your Media Temple control panel
Forum: Fixing WordPress
In reply to: Altering linksActually I'd like to import a database, not export– You’ll need to export/dump the database with something like phpMyAdmin or a plugin first and then import it.
I went to wamp\bin\mysql\mysql5.5.8\data\wordpress\, rar'd everything and tried to import– I don’t think phpMyAdmin will be able to read a rar. I actually had problems importing a .bz2 archive this morning even through phpMyAdmin said it could handle sql compressed with it. I ended up connecting directly to the database via Sequel Pro.
Forum: Fixing WordPress
In reply to: DIfference in header on index.php and single.phpI looked at your theme’s style.css file and did not see the added style code. Regardless, I also saw which plugin you were using. There should be a Custom CSS textarea for the “Bentham” font.
Add this to the custom CSS textarea and save:
#header #title { font-family: 'Bentham', arial, serif; }Forum: Themes and Templates
In reply to: Black border around imagesTry using this:
.page .post-content img, .comment .avatar { background: none; }Go ahead and remove the earlier code since the above code addresses both places.
Forum: Fixing WordPress
In reply to: Tag count?Have you tried using get_the_tags()?