Dimitar A.
Forum Replies Created
-
Forum: Plugins
In reply to: [Woocommerce DBC Discount] Not workginComment out line 107 and 189 in class/class-manage-discount.php:
//if($isFlatDiscountOn == 'no') { // }
if you want to update prices automatically on product save add a metabox from line 191 and on:
function woocm_cat_add_meta_box() { $screens = array( 'product' ); foreach ( $screens as $screen ) { add_meta_box( 'woocm_cat_sectionid', __( 'Woocommerce Fields', 'woocm_cat_textdomain' ), 'woocm_cat_meta_box_callback', $screen ); } } add_action( 'add_meta_boxes', 'woocm_cat_add_meta_box' ); /** * Prints the box content. * * @param WP_Post $post The object for the current post/page. */ function woocm_cat_meta_box_callback( $post ) { wp_nonce_field( 'woocm_cat_save_meta_box_data', 'woocm_cat_meta_box_nonce' ); echo '<div style="display:none">'; list_category_bulk_discount(); echo '</div>'; } /** * When the post is saved, saves our custom data. * * @param int $post_id The ID of the post being saved. */ function woocm_cat_save_meta_box_data( $post_id ) { /* * We need to verify this came from our screen and with proper authorization, * because the save_post action can be triggered at other times. */ // Check if our nonce is set. if ( ! isset( $_POST['woocm_cat_meta_box_nonce'] ) ) { return; } // Verify that the nonce is valid. if ( ! wp_verify_nonce( $_POST['woocm_cat_meta_box_nonce'], 'woocm_cat_save_meta_box_data' ) ) { return; } // If this is an autosave, our form has not been submitted, so we don't want to do anything. if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { return; } save_category_data(); } add_action( 'save_post', 'woocm_cat_save_meta_box_data' );
Forum: Plugins
In reply to: [Slippy Slider - Responsive Touch Navigation Slider] Problem uploading imagesI updated the media uploading script it was missing the default enqueue js.
There was a bug in PHP, download the latest version.
Forum: Plugins
In reply to: [Aviary Image Editor Add-on For Gravity Forms] Wait a secondThe DEVIL is in the details ??
There was a bug on line 66 of aviary-image-editor-add-on-for-gravity-forms/includes/js/gform-aviary.js
Change this:
var data = “action=aa_ig_ajax&view=save_img&url=”+newURL
into this:
var data = “action=aa_ig_ajax&view=save_img&url=”+newURL;
Oraka please check I updated the plugin to replace the \ sign before ‘ or ” when you view the website. You can use str_replace for anywhere in the plugin, to fix this problem.
Forum: Plugins
In reply to: [Testimonials Pro] [Plugin: Testimonials Pro] Cannot add testimonialI uploaded it today – 1.2, this should be fixed now, but please let me know if it happens again..
Forum: Plugins
In reply to: [Testimonials Pro] [Plugin: Testimonials Pro] Testimonials Not RotatingThe rotating ability is included in another plugin – Testimonials Ultimate – https://freelance-gur.us/store#ecwid:category=3549025&mode=product&product=15024646
Forum: Plugins
In reply to: [Testimonials Pro] [Plugin: Testimonials Pro] Cannot add testimonialSorry I will upload a new version in couple of days – it’s not the image, but the link, you have to enter something as link of the testimonial.
For now just enter #
ThanksForum: Plugins
In reply to: [Testimonials Pro] [Plugin: Testimonials Pro] Cannot add testimonialThe new version is more user friendly, let me know if something like this happen again.
The new version should fix this problem. After deleting the templates you should be able to see the add new testimonials form.
Forum: Plugins
In reply to: [Testimonials Pro] [Plugin: Testimonials Pro] CSS classesIt’s compatible for all versions, I updated that setting in the readme.txt file. Yes it would be better for styling to include CSS classes to the shortcode.
For latest versions you can check here:
https://freelance-gur.us/category/wordpress-pluginsForum: Plugins
In reply to: [Testimonials Pro] [Plugin: Testimonials Pro] Auto Random / Rotate OptionYeah it seems a good option for the widget. Will have that in mind for the new versions.
Forum: Plugins
In reply to: [Testimonials Pro] [Plugin: Testimonials Pro] Cannot add testimonialPlease try again, with other browser, make sure you enter all fields and you have JavaScript enabled.
Read more here:
https://freelance-gur.us/blog/addedit-testimonials