mizzinc
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Car Manager] Car search form in a widget?I second this feature request. Would appear to be a logical feature to include for a good user experience.
Forum: Plugins
In reply to: [WP Car Manager] Car search form in a widget?I second this feature request. Would appear to be a logical feature to include for a good user experience.
Forum: Plugins
In reply to: [Decision Tree] Back buttonThis would be a great feature to add team. Any updates coming our way soon?
Forum: Plugins
In reply to: [Smash Balloon Social Photo Feed – Easy Social Feeds Plugin] User AccessThanks for the exteremly quick response John.
Request to change this is because the access code constantly needs updating to show the feed. Rather me doing it everytime it would be easier for the Editor or Shop Manager.I’m comfortable editing the plugin code and understamd this will be overwritten upon updates.
Forum: Fixing WordPress
In reply to: Unable to Log In –Cookies Are Blocked Due To Unexpected Output?@wsaiful THANK YOU!
Removed the closing ?> at end of functions.php file.
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Posibility to add custom button templatesI have extended the YITH_WCWL_UI class in my Child Theme.
So you could do something like this. Just copy and paste the ‘add_to_wishlist_button’ from the plugin function in and edit.
class MY_YITH extends YITH_WCWL_UI { public static function add_to_wishlist_button( $url, $product_type, $exists ) { global $yith_wcwl, $product; $label = apply_filters( 'yith_wcwl_button_label', get_option( 'yith_wcwl_add_to_wishlist_text' ) ); $icon = get_option( 'yith_wcwl_add_to_wishlist_icon' ) != 'none' ? '<i class="' . get_option( 'yith_wcwl_add_to_wishlist_icon' ) . '"></i>' : ''; $classes = get_option( 'yith_wcwl_use_button' ) == 'yes' ? 'class="add_to_wishlist single_add_to_wishlist button alt"' : 'class="add_to_wishlist"'; $html = '<div class="yith-wcwl-add-to-wishlist">'; $html .= '<div class="yith-wcwl-add-button'; // the class attribute is closed in the next row $html .= $exists ? ' hide" style="display:none;"' : ' show"'; $html .= '><a href="' . esc_url( $yith_wcwl->get_addtowishlist_url() ) . '" data-product-id="' . $product->id . '" data-product-type="' . $product_type . '" ' . $classes . ' ><i class="fa fa-hand-o-right"></i> '. $label . '</a>'; $html .= '</div>'; $html .= '<div class="yith-wcwl-wishlistaddedbrowse hide" style="display:none;"><span class="feedback"><i class="fa fa-thumbs-o-up"></i> ' . __( 'Product added!','yit' ) . '</span></div>'; $html .= '<div class="yith-wcwl-wishlistexistsbrowse ' . ( $exists ? 'show' : 'hide' ) . '" style="display:' . ( $exists ? 'block' : 'none' ) . '"><span class="feedback"><i class="fa fa-thumbs-o-up"></i> ' . __( 'Product In Wishlist', 'yit' ) . '</span></div>'; $html .= '<div style="clear:both"></div><div class="yith-wcwl-wishlistaddresponse"></div>'; $html .= '</div>'; $html .= '<div class="clear"></div>'; return $html; } }
Then include it in your template. I personally, have this in function which is called on add_action().
MY_YITH::add_to_wishlist_button( $yith_wcwl->get_wishlist_url(), $product->product_type, $yith_wcwl->is_product_in_wishlist( $product->id ) )
Yeah, I also discovered there were plenty more errors too, sorry manakio2k.
Ended up deleting the plugin and using another method, albeit basic for my needs.
On line 76 change:
if(isset($_POST['buat_selected_field']) || $current_basic_setting['buat_default_type_selection'])
to this
if(isset($_POST['buat_selected_field']) || isset($current_basic_setting['buat_default_type_selection']) )
Need to check if $current_basic_setting[‘buat_default_type_selection’] exists.
Forum: Plugins
In reply to: [CollabPress] Dashboard WidgetGithub page is already aware of this. Added function_exists().
Forum: Plugins
In reply to: [CollabPress] How to configure?Is there a way to revert? Functionally the plugin is great, but this new design is not appealing sorry, using modal windows such as colorbox and the inclusion of extra CSS files is unnecessary.
Forum: Installing WordPress
In reply to: 2.8.3 Edit Pages > TemplateChanged the theme to default then back to my theme.
Bizarre!
Forum: Installing WordPress
In reply to: 2.8.3 Edit Pages > TemplateUpgraded to 2.8.4, still no resolve.
Anyone?