DDT
Forum Replies Created
-
Forum: Plugins
In reply to: [FancyBox for WordPress] Captions Not VisibleJust to say I am having the same issue.
In a gallery the captions are not displayed as the div fancybox-custom-caption remains empty
<div class="fancybox-custom-caption" style=" position: absolute;left:0;right:0;color:#000;padding-top:10px;bottom:0;margin:0 auto;text-align:center; "></div>I also disabled woocommerce and checked without any luck.
Any other tips or tricks?!
Forum: Plugins
In reply to: [Hide Shipping Method For WooCommerce] Free Plugin version doesn’toh, strange thing is. It seems to work in firefox and safari, but not in Chrome
Forum: Plugins
In reply to: [Hide Shipping Method For WooCommerce] Problem with not equal to categoryDoes this plugin works for the condition “If Cart Only Contains Product Category X Show Only Flat Rate Light Weight (= hide others) “
Forum: Plugins
In reply to: [WooCommerce] Shipping costs if cart only consists of product x???Hi Andy,
Really appreciate the info, I am going to read up.
I wish you all the best …Stay Safe, Stay Healthy
Forum: Fixing WordPress
In reply to: tincyMCE errorDid you find some kind of solution??
I am having a strange tinymce problem. When i use firefox i can’t see visual editor buttons. But in chrome everything works as expected.
i also notice when Hyyan WooCommerce Polylang Integration plugin is enabled i can not edit product data.
Is this normal??Forum: Plugins
In reply to: [WooCommerce] How to show products by product attribute?Ok i do have another question:
How do i display all product attributes even when the product attributes are not used?
Forum: Plugins
In reply to: [WooCommerce] How to show products by product attribute?AARRGGHHH
totally overlooked to check “enable archives” under attributes for the attribute “brand”
Forum: Plugins
In reply to: [Popups - WordPress Popup] Mailchimp doesn’t seem to work in the popup?Hi Damian,
I already have disabled ajax on the popup settings, that is how i knew my test CF7 worked. The mailchimp form validation logic seems to work when hitting the submit button, but the form data seem to be sent to mailchimp but the response from the mailchimp server isn’t shown in the Popup??
My mailchimp form works when i put in on a single page
- This reply was modified 8 years, 11 months ago by DDT.
Forum: Plugins
In reply to: [WebLibrarian] General question for a simple rental business?Another question, is it possible to hold/reserve a book(product) online? As I am reading status “Check shelves” which I would like to be “reserve now”
regards
I have found a hacky solution by echo out the shortcode in the theme template_core php page
Forum: Fixing WordPress
In reply to: How do I overwrite multiple images file dimensions being saved?Just setting the Settings > media to 0 will prevent the different sizes.
But how do I prevent wordpress from generating different dimensions if uploaded from a specific plugin??
this only works for all
add_filter('intermediate_image_sizes_advanced', 'filter_image_sizes'); function filter_image_sizes( $sizes) { unset( $sizes['thumbnail']); unset( $sizes['medium']); unset( $sizes['large']); return $sizes; }But how can I only use add_filter if the upload comes from a specific plugin?
Forum: Plugins
In reply to: [Contact Form 7] How to save an uploaded file on the server with latest CF7?Ok I am almost a happy camper.
Out commenting
//$this->remove_uploaded_files();did work.
I am testing on a mac and I didn’t realise the WPCF7_UPLOADS_TMP_DIR should include the/Applications/XAMPP/xamppfiles/htdocs/define('WPCF7_UPLOADS_TMP_DIR','/Applications/XAMPP/xamppfiles/htdocs/mydomain.com/_site/wp-content/uploads/specials/2016');Now for my second questions how do I get rid of the unique named folder created???
FOUND IT; by out commenting line 162 in file.php
uploads_dir = wpcf7_maybe_add_random_dir( $uploads_dir );How do I prevent the multiple images? I only want to store the original file and not the other filename-…X…?
DISCLAIMER: don’t follow my steps if your website has ‘open’ file upload
Forum: Plugins
In reply to: [SEO Ultimate] undefined offset noticeDid you find a solution?
Forum: Networking WordPress
In reply to: Plugins->Add New displays no plugins!Did you find a solution?
I am having almost the same issue with a custom table, I get
PHP Notice: Undefined offset: 1 in ..class-wp-list-table.php on line 1091And I realise this happened while upgrading to WP 4.4. I see messages like
line 1091 has to do with the column headers and I tried <code></code> list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();before I had
list( $columns, $hidden ) = $this->get_column_info();