dirtyoldlarry
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Removing ‘# of reviews on (product name) & ‘leave a review’Thanks but none of what you posted is related to my original question.
You posted links to edit either the name of the product tabs, the order of the tabs, the amount of product tabs (adding custom tabs).
My question was how to remove the Header title present within the review tabs that either says “Be the first to leave a review for (product title) if there are currently no reviews, or “There are (#) reviews for (product title)” if there are some reviews.
I want to get rid of the header title altogether so there is nothing but the review box there.
Forum: Plugins
In reply to: [Iptanus File Upload] How To Customize Text Size & Button ColorsThanks but I really dont get why CSS is so hard for me to grasp.
.input[type=”button”].file_input_button { background-color: black !important; color: white !important } .input[type=”button”].file_input_submit { background-color: black !important; color: white !important } .input[type=”button”].file_input_submit { background-color: black !important; color: white !important } .input[type=”button”].file_input_submit:hover { background-color: black !important; color: white !important }
That doesn’t work. What am I doing wrong here?
Forum: Plugins
In reply to: [Iptanus File Upload] How To Customize Text Size & Button ColorsI should mention, I figured out how to do it via CSS changes.
For example:
.button, button, input[type="submit"], input[type="reset"], input[type="button"] { background-color: black !important; color: white !important; }
This works but it now applies this to all buttons across my website.
How can you modify only the buttons for your plugin?
Forum: Plugins
In reply to: [WooCommerce] Star Rating GlitchIt’s Sooperstore: https://themeforest.net/item/sooperstore-responsive-woocommerce-theme/full_screen_preview/2845356
Theme is actually suffering from similar commerce issues in their demo.
Forum: Themes and Templates
In reply to: [Sparkling] Category Images & Date Removal1. worked perfectly, although number 2. did not.
Lol i’m probably bugging you now, but for 2. if it did work so only featured images are displayed in category feed — is there a simple bit of code that could force all featured images to say 200×200 and align left of text within excerpt? Rather than above the excerpt as it is by default?
Forum: Themes and Templates
In reply to: [Sparkling] Removing Recent Post FeatureOh ic, I thought you were hinting at a vulnerability in your theme that was being exploited from what I was doing or something.
Anyway gotcha ty
Forum: Themes and Templates
In reply to: [Sparkling] Removing Recent Post FeatureTy, I have changed it from admin, although why would it get hacked it no time?
Forum: Themes and Templates
In reply to: [Sparkling] Removing Recent Post FeatureForum: Fixing WordPress
In reply to: First Sidebar Stuck to Bottom of Page ~ Fresh Installcan you not tell me the general way to fix this though…
Forum: Fixing WordPress
In reply to: WordPress Dashboard Always Brokennew domain dont have plugin
Forum: Fixing WordPress
In reply to: Adding a Read More ButtonThis is the only thing I can seem to find in my functions.php that even seems relevant to more tags
} // Limit Post Word Count function new_excerpt_length($length) { return 50; } add_filter('excerpt_length', 'new_excerpt_length'); //Replace Excerpt Link function new_excerpt_more($more) { global $post; return '...'; } add_filter('excerpt_more', 'new_excerpt_more'); //Activate post-image functionality (WP 2.9+) if ( function_exists( 'add_theme_support' ) ) add_theme_support( 'post-thumbnails' );
can something be changed here for readmore/more links to be shown on frontpage post excerpts?
Forum: Plugins
In reply to: Special Recent Postsnot my theme but see the second sidebar on right has multitabs at the top.
https://demo.woothemes.com/?name=headlines
popular, latest, comments, tags
Also thumbnails in Special Recent Post sidebar is set to like 65×65, Im just wondering where can I find the code to add something like:
////special recent posts////// .special-recent-posts-thumbnail img { border: 1px solid #D3D3D3;
Im assuming it would be simple like that
Forum: Fixing WordPress
In reply to: Adding a Read More ButtonRead it but dont really understand it… Using more tags in post dont work for me. I add a more tag in my post but nothing shows up in the feed.
Just the default (…) that arent responsive anyway
Forum: Fixing WordPress
In reply to: Adding a Read More ButtonI want to add that I made a “read more” button in photoshop. I just need to add the image and somehow have it linked to the corresponding post
Forum: Fixing WordPress
In reply to: Simple Header Problem Yet No Solution?so what? im not asking for a re-write of my entire theme. Just pretend im using twentytwelve or something. Im sure the generic structure of how to fix the problem is the same or similar.