sscalifornia
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Velocity Minify] Defer parsing inline JS issueThought it was something like this. Have clients that keep wanting the best pagespeed scores. Not always doable. Thanks.
Forum: Plugins
In reply to: [Maximum Quantity for WooCommerce Shops] Customize error messagePerfect, thanks.
Forum: Fixing WordPress
In reply to: Site Icon Favicon Works in all Browsers Except ChromeI’ve noticed this issue as well and having to do favicons the old way, because Chrome doesn’t like it, negates the purpose of having the site icon functionality in the first place. There has got to be a better answer to this issue.
- This reply was modified 8 years ago by sscalifornia. Reason: bad comma placement
The code works but now the image size doesn’t.
I was able to add a line to the code found on your site here. For anyone that needs it, this is what I did:
//Post Shortcode function be_display_posts_unlink_title( $output, $original_atts, $image, $title, $date, $excerpt, $inner_wrapper, $content, $class ) { // Create a new title $title = '<span class="title">' . get_the_title() . '</span> '; $image = '<span class="image" href="' . get_permalink() . '">' . get_the_post_thumbnail( get_the_ID(), $image_size ) . '</span> '; // Now let's rebuild the output $output = '<' . $inner_wrapper . ' class="' . implode( ' ', $class ) . '">' . $image . $title . $date . $author . $excerpt . $content . '</' . $inner_wrapper . '>'; // Finally we'll return the modified output return $output; } add_filter( 'display_posts_shortcode_output', 'be_display_posts_unlink_title', 10, 9 );
Forum: Hacks
In reply to: Create Email Notification function for Gravity Forms Product Add-ons PluginI had the same issue and I resolved using the following code:
function division_enable_notifications( $disabled, $form, $lead ){ return false; } add_filter( 'gform_disable_notification_FORMID', 'division_enable_notifications', 20, 3 );
Make sure that you change FORMID to the id of the form that you want to target.
For some reason, there are two entries created when you use Gravity forms and Product Addons together so I used this plugin to prevent that:
https://www.ads-software.com/plugins/gravity-forms-duplicate-prevention/
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Remove the word "Search"No trouble at all ?? That totally worked, thanks so much for your help. Might be a little complicated for an average user though.
Forum: Plugins
In reply to: Trying to find a good invoicing pluginHi wordpress_hosting,
Nice looking plugin you’ve got there.
I would say that the most important thing for me right now is the Stripe integration. It’s currently my favorite payment gateway and I already have an account set up with them.
If you need any feedback or assistance with your new plugin let me know. This is something very important to me and my business and I’d be willing to help in any way I can.
SS
Forum: Plugins
In reply to: [Expander] Move "Read Less" to bottom of textYou’ll actually want to put this code into your child-theme’s style.css and just leave the shortcode as it is. If you’re not using a child theme, here is an article on how to create one: https://codex.www.ads-software.com/Child_Themes
Alternatively you could use this plugin: https://www.ads-software.com/plugins/child-themify/
Hope this helps.
Forum: Plugins
In reply to: [Testimonials by WooThemes] Get BylineThank you sir, I appreciate you saying that.
Forum: Plugins
In reply to: [Testimonials by WooThemes] Get BylineWow man! That’s just what I needed. Thanks again for your help on this issue. I love it when developers can help each other. You rock dude!
Forum: Plugins
In reply to: [Testimonials by WooThemes] Get BylineIf you check out the page here all of the titles are on everyone’s testimonial.
Forum: Plugins
In reply to: [Testimonials by WooThemes] Get BylineThank you so much for your response. When I added the elements that you had suggested, I do get the bylines but they are all of the bylines in a row no matter who had posted them. Shouldn’t they be checking the post to see which post returns which byline?
Forum: Plugins
In reply to: [Expander] Move "Read Less" to bottom of textI’ve done this using position: absolute; on .wpex-link and you might need to add bottom as a negative value. Such as:
.wpex-link { bottom: -40px; position: absolute; }
And if it’s in a <p> you might need to give the p:last-child a margin-bottom of 0.
I hope this helps, I’ve made it work several times so if this doesn’t work, maybe I could help further.
Check this out.