Title: thezedt's Replies | WordPress.org

---

# thezedt

  [  ](https://wordpress.org/support/users/thezedt/)

 *   [Profile](https://wordpress.org/support/users/thezedt/)
 *   [Topics Started](https://wordpress.org/support/users/thezedt/topics/)
 *   [Replies Created](https://wordpress.org/support/users/thezedt/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/thezedt/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/thezedt/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/thezedt/engagements/)
 *   [Favorites](https://wordpress.org/support/users/thezedt/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 222 total)

1 [2](https://wordpress.org/support/users/thezedt/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/thezedt/replies/page/3/?output_format=md)…
[13](https://wordpress.org/support/users/thezedt/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/thezedt/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/thezedt/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/thezedt/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Digital Downloads – eCommerce Payments and Subscriptions made easy] Table ‘xyz.wp_edd_notifications’ doesn’t exist](https://wordpress.org/support/topic/table-xyz-wp_edd_notifications-doesnt-exist/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [4 years, 3 months ago](https://wordpress.org/support/topic/table-xyz-wp_edd_notifications-doesnt-exist/#post-15518926)
 * Hi,
 * This error is most likely caused by the notifications table creation query failing
   during the EDD update on older versions of MySQL (under 5.6? my test system is
   5.5.68) due to `CURRENT_TIMESTAMP()` being an unsupported default value for the`
   date_created` and `date_updated` columns.
 * The notifications functionality looks introduced in EDD 2.11.4.
 * To complicate matters, changing the columns types to `timestamp` is insufficient,
   since older MySQL will now complain with:
    `Incorrect table definition; there
   can be only one TIMESTAMP column with CURRENT_TIMESTAMP in DEFAULT or ON UPDATE
   clause`
 * Since I see EDD does set default values in the code for these two columns, I 
   removed the default SQL value for both columns and that allowed me to manually
   resolve the error by creating the table manually with:
 *     ```
       CREATE TABLE __TABLENAME__ (
       	    id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
       	    remote_id bigint(20) UNSIGNED DEFAULT NULL,
       	    title text NOT NULL,
       	    content longtext NOT NULL,
       	    buttons longtext DEFAULT NULL,
       	    type varchar(64) NOT NULL,
       	    conditions longtext DEFAULT NULL,
       	    start datetime DEFAULT NULL,
       	    end datetime DEFAULT NULL,
       	    dismissed tinyint(1) UNSIGNED NOT NULL DEFAULT 0,
       	    date_created timestamp NOT NULL,
       	    date_updated timestamp NOT NULL,
       	    PRIMARY KEY (id),
       	    KEY dismissed_start_end (dismissed, start, end)
       		) DEFAULT CHARACTER SET __$wpdb->charset__ COLLATE __$wpdb->collate__;
       ```
   
 * Update the _table_ name, _charset_ and _collation_ with those valid on your server.
 * I can’t say if the table structure change has any effect on the dashboard functionality(
   I haven’t noticed anything terribly broken so far, though).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Bravada] featured image](https://wordpress.org/support/topic/featured-image-514/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [4 years, 8 months ago](https://wordpress.org/support/topic/featured-image-514/#post-15020041)
 * Hi,
 * ﻿The “camera” icons are there as failsafe in case the featured boxes have no 
   images. Otherwise they are overlapped by the featured images and not visible.
   Are your featured images semi-transparent?
 * You can remove the icons with a bit of CSS:
 *     ```
       ﻿body .lp-box-image::before {
           display: none;
       }﻿
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Bravada] No review stars on woocommerce products](https://wordpress.org/support/topic/no-review-stars-on-woocommerce-products/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/no-review-stars-on-woocommerce-products/#post-14438048)
 * The forum doesn’t accept images, but you can see the respective option and options
   panel here: [https://imgur.com/a/O7Td936](https://imgur.com/a/O7Td936)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Bravada] No review stars on woocommerce products](https://wordpress.org/support/topic/no-review-stars-on-woocommerce-products/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/no-review-stars-on-woocommerce-products/#post-14435282)
 * Hi,
 * By default the theme uses placeholders in the comment form, which can hide extra
   custom fields added by plugins. That can easily be resolved by changing the _Comment
   Field Label_ option to the _Labels_ value, from the theme’s _Post Information
   > Comments_ options panel.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Since last update — There was an error trying to send your message. Please try..](https://wordpress.org/support/topic/since-last-update-there-was-an-error-trying-to-send-your-message-please-try/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/since-last-update-there-was-an-error-trying-to-send-your-message-please-try/#post-11082207)
 * It’s worthy to note that things will also fail if the `/recaptcha/api.js` script
   is loaded deferred (maybe due to some _optimization_ plugin or technique).
    Wasted
   one hour scratching my head before I noticed this 🙂
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Anima] Promising](https://wordpress.org/support/topic/promising-17/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/promising-17/#post-9476052)
 * I don’t see the direct relation between features and quality.
 * Anima has all the features our other themes have, however it has to have its 
   unique look and design, which don’t quite work with individual post backgrounds.
 * Not looking the same as others themes shouldn’t be a minus.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fluida] Widget doesn’t showing on backend](https://wordpress.org/support/topic/widget-doesnt-showing-on-backend/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/widget-doesnt-showing-on-backend/#post-9476015)
 * The theme has 6 widget areas: header, footer, sidebar left, sidebar right, above
   content and below content. There is no ‘top’ widget area in Fluida.
 * You left a review 36 hours after posting in the support forums with a problem
   that is not sufficiently explained and cannot be seen (since it’s in the dashboard).
 * You CANNOT punish the theme with a bad review for not receiving free support 
   for a free product in such a limited timeframe.
    You are still using the theme
   on your site. If it was such a bad experience why didn’t you switch to a different
   one?
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Fluida] Top widget disappear on backend](https://wordpress.org/support/topic/top-widget-disappear-on-backend/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/top-widget-disappear-on-backend/#post-9476006)
 * The theme has 6 widget areas: header, footer, sidebar left, sidebar right, above
   content and below content. There is no ‘top’ widget area in Fluida.
 * You posted this review 36 hours after posting in the support forums with a problem
   that is not sufficiently explained and cannot be seen (since it’s in the dashboard).
 * You CANNOT punish the theme with a bad review for not receiving free support 
   for a free product in such a limited timeframe.
    You are still using the theme
   on your site. If it was such a bad experience why didn’t you switch to a different
   one?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cryout Serious Theme Settings] Update status](https://wordpress.org/support/topic/update-status-2/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [9 years, 3 months ago](https://wordpress.org/support/topic/update-status-2/#post-8984540)
 * Unless something serious changes in WordPress’ dashboard functionality, the plugin
   does not need updates to maintain compatibility with newer WordPress versions.
 * We’ll bump the ‘tested up to’ version for peace of mind.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Serious Slider] Target of link in Serious slider does not work](https://wordpress.org/support/topic/target-of-link-in-serious-slider-does-not-work/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/target-of-link-in-serious-slider-does-not-work/#post-8843965)
 * Thanks for pointing this out. It is fixed in today’s update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Serious Slider] how to center images](https://wordpress.org/support/topic/how-to-center-images-3/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/how-to-center-images-3/#post-8843958)
 * Thanks for pointing this out. It is fixed in today’s update.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fluida] Fluida 1.1.3 broken?](https://wordpress.org/support/topic/fluida-1-1-3-broken/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/fluida-1-1-3-broken/#post-8411682)
 * Yup, 1.1.3 was indeed broken (due to an incomplete file).
    We’ve just published
   1.1.4 to correct this. Sorry about the issue.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fluida] translation not working](https://wordpress.org/support/topic/translation-not-working-44/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/translation-not-working-44/#post-7640800)
 * Place the files in wp-content/languages/themes/
 * If you’re placing them in fluida/languages, they should be named simply cs_CZ.
   mo and cs_CZ.po (but they’ll get deleted at the next theme update).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fluida] Fluida Tagline](https://wordpress.org/support/topic/fluida-tagline/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/fluida-tagline/#post-7583664)
 * Fluida doesn’t visibly display the site tagline (for now) – it is only used as
   the title’s hover hint.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fluida] The Content After widget area does not have a colour](https://wordpress.org/support/topic/the-content-after-widget-area-does-not-have-a-colour/)
 *  [thezedt](https://wordpress.org/support/users/thezedt/)
 * (@thezedt)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/the-content-after-widget-area-does-not-have-a-colour/#post-7576895)
 * That widget area is not designed to have a background color – it’s mostly intended
   for widgets which come with their own styling.

Viewing 15 replies - 1 through 15 (of 222 total)

1 [2](https://wordpress.org/support/users/thezedt/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/thezedt/replies/page/3/?output_format=md)…
[13](https://wordpress.org/support/users/thezedt/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/thezedt/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/thezedt/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/thezedt/replies/page/2/?output_format=md)