dbp
Forum Replies Created
-
Forum: Plugins
In reply to: [Ad Inserter - Ad Manager & AdSense Ads] Failed to execute ‘write’ errorThis is resolved. Has to do with a setting with the plugin. Thanks.
Forum: Plugins
In reply to: [Yoast SEO] Conflict With Visual Composer 4.8.1Yoast SEO vs 3.0.4 update still did not fix this issue for me.
Forum: Plugins
In reply to: [Yoast SEO] Conflict With Visual Composer 4.8.1Same problem here, but with Visual Composer 4.7.4
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Can't Resize Cells In IE11Yeah I saw that. Leave it to IE.
As a workaround I just set min-width and min-height for elements. Would be nice if there is a built-in feature that sets this on IE. As it currently stands I would say editing tables in IE is a major hassle.
Forum: Plugins
In reply to: [YUZO] ErrorsI’m having the same problem.
Forum: Reviews
In reply to: [Popup | Custom Popup Builder] Does not work on CDN'sYou should update your rating. The 1 star is not accurate since you say “All Working Good”
Thanks. I’ll check it out today.
Forum: Plugins
In reply to: [WP Super Cache] Can't seem to remove query stringsWas this issue ever resolved? I’m getting the same issue. Disabling the Don’t cache pages with GET parameters. (?x=y at the end of a url) option doesn’t do anything for me.
Forum: Plugins
In reply to: [WooCommerce] Update to 2.1, Fatal error, class not foundHey Dan. I’m having same issue with Intrigue theme. How did you resolve this issue?
Forum: Plugins
In reply to: [Portfolio Gallery - Photo Gallery] Ordering Of ImagesSo I’m not doing something wrong – the current setup randomly assigns an image to feature?
Forum: Plugins
In reply to: [Really Simple Popup] Only loading 2 images in popupHi Huntly. Sorry, its been a while. So we just gave up on that functionality and went a different route.
Forum: Plugins
In reply to: [WooCommerce] Checkout-missing proceed to pay buttonI updated the WooCommerce plugin to latest version and it solved the issue.
Forum: Plugins
In reply to: [WooCommerce] Checkout-missing proceed to pay buttonI’m having same problem. When I load the checkout page, the <div id=”payment”> section loads temporarily, then it disappears.
So this is section of checkout while page is loading:
https://postimg.org/image/ncv5i1csv/And this is section of checkout once the page is loaded:
https://postimg.org/image/lln05dmm9/Hi srijith.v . That link doesn’t address HTML5 validation. Also, we would have to edit core plugin files?
Forum: Fixing WordPress
In reply to: Add slug to Screen Options on Pages screenThis worked, as suggested here:
/*Add Slug to columns on Pages */ add_filter('manage_pages_columns', 'my_page_column'); function my_page_column($defaults){ $defaults['my_slug'] = __('slug'); /*Add our column to the list of default columns*/ return $defaults; } add_action('manage_pages_custom_column', 'custom_page_column_data', 10, 2); function custom_page_column_data($column_name, $id) { if( $column_name == 'my_slug' ) { $page_slug = get_page($ID = $id)->post_name; echo $page_slug; } }