Forum Replies Created
-
AuthorPosts
-
ezines
ParticipantI like it!
It does feel a bit busy/cluttered though. A little more vertical whitepsace in each content area might help.
ezines
ParticipantThanks Andrea. I did that on the 22nd right after my prior post.
ezines
ParticipantHow about theme support team? Do you know how to do this?
ezines
ParticipantDoes anyone have a clue how to do this?
ezines
ParticipantMoving this to General Discussion.
ezines
ParticipantWorked perfectly!
Thank you Lynne,
ezines
ParticipantI understand that the sidebar is actually the header. Still want it on the right side, not left.
ezines
ParticipantFigured it out!
In case someone else needs it:
- changed approach to include instead of exclude, which didn't work
- cat parameter isn't usable for products
- used product_cat and category slugs to include all categories except ones to be excluded
$my_query = new WP_Query('posts_per_page=12&post_type=product&product_cat=category-slug-1,category-slug-2,category-slug-3ezines
ParticipantI'm a PHP newbie. No idea what to do with your code.
Here's full code snippet:
<?php $slider_cat = 1; if($th_options['th_featured_carousel_cat'] != '') { $slider_cat = implode(",", $th_options['th_featured_carousel_cat']); } $my_query = new WP_Query('posts_per_page=12&post_type=product); while ($my_query->have_posts()) : $my_query->the_post(); $image_id = get_post_thumbnail_id(); $image_url = wp_get_attachment_image_src($image_id,'carousel'); $image_url = $image_url[0]; ?>Where/how do I add new code?
ezines
ParticipantWhat you wrote is the same as saying, "my car's engine is making loud noises and smoking but I'm going to drive 300 miles and then I'll get it fixed."
It's a waste of time and effort to get your site running without first removing the cause of the hack and securing it. I learned the hard way that hackers plant hidden doors so they can get back into your site.
ezines
ParticipantFixing your theme won't keep the hackers out, nor will just a security plugin.
I highly recommend the guys at WP Security Pros - wpsecurity.com
They repaired three hacked sites for me and none have been re-hacked. Also reduced pageload times and repaired code errors.
ezines
ParticipantFireSamurai - Thanks again!
I kept playing with your code. It was very close, just missing a couple of exclamation marks:
function my_remove_post_meta() {
if ( !is_home() || !is_front_page() ) {
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );
}}ezines
ParticipantThanks FireSamurai, but that did not work.
None of the remove post meta functions seem work on this theme.
This is from the SP code snippets page and it also does not work. Meta remains across the theme:
/** Remove the post meta function */
remove_action( 'genesis_after_post_content', 'genesis_post_meta' );I've also tried a variety of things all over the Simple Hooks plugin.
I sincerely thank to community for offering assistance.
It's getting to be WAY PAST TIME for some help from Studiopress support. Is anyone out there?
January 15, 2013 at 10:57 pm in reply to: Support Tickets are a JOKE!!!! Really, Studiopress??? #12214ezines
ParticipantBTW, "ezines" is short for "ezines2001" @my-fave-email. When I began using it, 2001 was so far in the future that I didn't even consider that one day it would be ancient. That's how/why my lists have over 200,000 subscribers.
January 15, 2013 at 10:46 pm in reply to: Support Tickets are a JOKE!!!! Really, Studiopress??? #12209ezines
ParticipantThat's one of the things that makes the web so wonderful... you often don't really know whom you're dealing with and just how much influence they may have.
Despite of my (our) lack of coding knowledge, my business partners and I have deep skills in other areas and we're highly sought-after for WP meetup presentations.
Good S-U-P-P-O-R-T is the number-one thing I look for with any product or service, and I tell everyone who'll listen how important support is.
I have repeatedly slammed Woothemes to our email lists with over 200,000 subscribers total, and at every WordPress meetup where I've made presentations or attended. People thank me profusely in-person and by email.
January 15, 2013 at 10:20 pm in reply to: Support Tickets are a JOKE!!!! Really, Studiopress??? #12204ezines
ParticipantI second that... but it seems that when you speak up you are passive-aggressively censored.
So you can now expect to have your forum posts ignored by moderators, as mine have been.
In addition, anything you ask via support becomes a "customization" outside of their scope. In short, go pay someone to get the answers that you used to get in the old forum.
And it's not just here at... Woothemes is now far worse than this! I guess the new trend in selling themes is, "We're so big that we no longer have to care about each of you anymore."
BTW, I've stuck my neck out and responded to this post in the interest of making things better, which I believe was Robin's intention as well.
ezines
ParticipantThanks Barney.
No home.php in this theme
Does anyone have a clue?
ezines
ParticipantIdeas, thoughts, educated guesses?
ezines
ParticipantAnyone have a clue?
ezines
ParticipantI was able to hide the link using CSS,
home .navigation { display: none; }But the link is still in the page code.
How do I remove it completely?
-
AuthorPosts