Joms
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Widgets in my BackgroundAround line 204 of your style.css file a background image is set for your widgets. The background image has the text “Widget”.
li.widget {background: url('images/bg/sidebar/widget.jpg') no-repeat left top;}Either remove that or use another background image instead.
Forum: Themes and Templates
In reply to: Need to place multiple clickable images in a footer.You should not edit the footer.php file. If Genesis theme is updated your changes will be lost. Best thing to do is use a child theme (if you are not doing so yet) and edit/create a functions.php file inside which is all you need to edit.
And then you can follow this tutorial for changing the footer and apply what I said above.
Forum: Fixing WordPress
In reply to: google_stats_siteUsage_gaDownload the plugin again and do a text search on the plugin files for those entries or search for the entries in the plugins and themes directories.
Forum: Everything else WordPress
In reply to: How to build a basic tournament website?You could first try to search for a plugin which has the basic feature that you want – the closest thing i can think of is a membership plugin (others might know a better one). And then modify it (if the plugin author allows it) or hire someone else to give you what you want.
Although for me since this project has a very specific feature I’d recommend creating a new plugin.
Good luck!
Forum: Fixing WordPress
In reply to: google_stats_siteUsage_gaProbably used by your Google Analytics enabled theme or plugin.
Forum: Fixing WordPress
In reply to: Admin password only works once, then reset is requredSome steps that might help you identify the problem:
1. Switch to the default WordPress theme and see if the problem still exists, if it’s still there –
2. Disable all plugins and check again.Forum: Fixing WordPress
In reply to: use page experts individuallyI thought get_the_excerpt() would help you with that but upon checking the codex it no longer supports the post ID parameter (?).
Or something like this for a single post:
To get the excerpt for a post with ID 7:
<?php $my_id = 7; $post_id_7 = get_post($my_id); $title = $post_id_7->post_excerpt; ?>Forum: Themes and Templates
In reply to: Background Images, Colour CSS Not Loading. What's wrong????I hope you forgive yourself for this simple mistake that caused you 3 days… It happens to the best of us!
/* Theme Name: Avatar Destiny Portal Theme URI: http://avatardestinyportal.com Description: return theme for ADP Version: 1.0 Author: KiKi Mokina Author URI: http://99writtenwords.avatardestinyportal.com /*The comment block is not properly closed. The end should be
*/instead of/*.Forum: Themes and Templates
In reply to: Need to place multiple clickable images in a footer.You’ll just need to add an image that links to your social media page.
It would be something like:<a href="http://twitter.com"> <img src="<?php bloginfo("template_url") ?>/images/twitter_icon.gif" alt="Twitter" /> </a>Forum: Fixing WordPress
In reply to: Create a new page based on TAGsHow about this plugin?
http://wordpress.org/extend/plugins/posts-by-tag/Forum: Fixing WordPress
In reply to: Nav 'before' 'after' – not workingHaha great! Great work solving it!
Forum: Fixing WordPress
In reply to: Nav 'before' 'after' – not workingDid you create a menu in the admin? Appearance->Menus. This could possibly be the problem. You have to create one or else the function will call wp_page_menu instead.
Forum: Fixing WordPress
In reply to: Manage access to the categories in the adminTry this one:
http://wordpress.org/extend/plugins/role-scoper/Forum: Fixing WordPress
In reply to: Nav 'before' 'after' – not workingIt should work starting from version 3.0.
Are you sure it’s the one being called in your theme? You can try to comment out the function call first and see if it still shows in your website.
Because it looks like your theme is using wp_page_menu instead, hence the filter you added in functions.php is working.
Forum: Fixing WordPress
In reply to: I embedded a vimeo video and my entire page shitfed to the leftWhat’s weird is that on every page refresh your style.css changes. Make sure that there is no width attribute in your .page class:
Open your theme’s style.css, around line 202 look for
.page {and delete thewidth:800;inside it.