Joms
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Accidental deletion of codeWithout knowing what the website should look like it will be hard to determine. Now if the sidebar only went to a different position you probably deleted an opening or closing div tag. You might want to start looking from there.
If you’re using a downloaded theme the easiest way is to just download it again and compare it against your code.
@mygcsg5, if it says “Page not found” on upload it means the form is not submitting data to the right form action( most likely because you have a different group slug).
I’m using the edited plugin by lenasterg as well.
In templatetags.php around line 266,
Change:
$this->action_link = get_bloginfo('url') . '/' . $bp->current_component . '/' . $bp->current_item . '/' . $bp->current_action . '/';
To:
$this->action_link = get_bloginfo('url') . '/' . bp_get_groups_root_slug() . '/' . $bp->current_item . '/' . $bp->current_action . '/';Its seems that your database structure’s complexity comes from being able to perform CRUD functions on all the product attributes(colors,sizes, etc.) as well.
If by any chance you are not planning to create an admin page to perform these functions I suggest merging some of the tables to the main product table.
The main concern in the moment is you might have a bit big wp_post_meta table because of the attributes. The wp_posts won’t be that big because I don’t even think your products will reach over 10000.
How about creating custom post types, and then just use your post_id as a foreign key to the other custom tables you plan to create (tables that you think are better of separated from the post_meta table).
Forum: Fixing WordPress
In reply to: the youtube movie exits the frame of the siteIf you could take a look at the code I posted again the “?wmode=transparent” is appended on the end of the video’s URL.
For the other question you will want to put a float:left style on the iframe and on the form with id #WFItem91395.
Forum: Fixing WordPress
In reply to: the youtube movie exits the frame of the siteTry adding wmode=”transparent” in your embed code.
If it’s in an iframe make it something like:
<iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/ZTIBn_YF-FI?wmode=transparent" frameborder="0" wmode="Opaque">Note the added “?wmode=transparent” in the end of the src attribute.
You could compare the advantages and disadvantages of both methods. See if having a large wp_posts table is worth the WordPress functions you could use on WP posts like pretty permalinks, comments, plugins etc.
It depends on what features your website is going to have.
If you think you could recreate all of those and want more flexibility with your code and database structure, then go for creating your own tables.
IMO no need to use another framework.
Forum: Fixing WordPress
In reply to: Trouble With LayoutYou could have posts content that is wider than the content area of your theme, so your sidebar gets pushed down. Try creating a blank post and see if the sidebar still goes below it.
Forum: Fixing WordPress
In reply to: the youtube movie exits the frame of the siteLooks okay to me. The video does not exit the flowery frame in Firefox. Tested it on IE7 too.
Forum: Themes and Templates
In reply to: How do I keep only specific Pages on nav barI suggest using wp_nav_menu() function instead to avoid hard coding those pages. You can then easily add/remove menu items in the admin.
Forum: Fixing WordPress
In reply to: Links on Pages not workingI can’t find the
<a>tag on the text “VIEW WINE PORTFOLIO”. If you can see it in the post edit page then it might be that your HTML tags are getting stripped.Trying adding an image and see if it will show on the page. Check your theme output for the content, or any plugin that affects your content.
Forum: Fixing WordPress
In reply to: Create a new page based on TAGsThat’s what I said on my first reply to you sorry if I wasn’t clear enough.
Forum: Fixing WordPress
In reply to: Nominate PageThere are different rating plugins out there. Two of the popular ones are http://wordpress.org/extend/plugins/wp-postratings/ and http://wordpress.org/extend/plugins/gd-star-rating/. Although I recommend the former for you since it’s much simpler.
Install and activate the plugin and look at your published posts (yes, your blog posts), they should have ratings and an option to vote.
Forum: Themes and Templates
In reply to: Am I allowed to ask what this theme is Called?I’m not sure I just looked in the site you sent. Just try their demos if it’s the same.
Forum: Themes and Templates
In reply to: Am I allowed to ask what this theme is Called?Theme’s style.css:
Theme Name: Revolution Lifestyle Theme URL: http://www.plrboy.comForum: Everything else WordPress
In reply to: What's Good for More Traffic Content or BacklinksIt should be a mix of both.
People will start visiting/linking to a website if it has good content. However it will be easier for people to find your content because of backlinks.