meky01
Forum Replies Created
-
Forum: Reviews
In reply to: [WooCommerce] ISSUE CRITICALWhich WordPress version you run? And can you find out which PHP version you currently use? In advance I suppose it is because your server or your webhosting run on old version of PHP. Most of critical problems of plugins come from that.
Forum: Plugins
In reply to: [PHP Compatibility Checker] nothign happens when start scanSame here too… after click on “Scan site”, the rounded icon appear for just 2 secs and then dissapear and nothing happened. [WP 5.1 with PHP 5.5.9]
Forum: Plugins
In reply to: [Co-Authors Plus] Changing Author Order@mmswp2015: thx for link, it works for me… :o)
Forum: Plugins
In reply to: [Co-Authors Plus] Changing Author OrderIt looks like there is a bug while generating edit.php page on single posts/pages. Plugin always saves different custom order correctly, but when page is reloaded (or post was opened again) it loads data from database without information about order. So ‘admins’ and ‘editors’ must change order everytime before saving to work properly. I actually looked into code, but i didn’t find anything (or piece of code) where data is loaded into table, but I will try to find some fix again when I will to have some time because it is frustrating.
EDIT: and Also in new version of Co-Authors with WP 4.7 there is only one author per post / page in the overall table… In previous version there were all listed authors, but now it is only the first one.
- This reply was modified 8 years, 2 months ago by meky01.
Forum: Plugins
In reply to: qTranslate-X – Can't switch back to default languageMy problem is fixed now…
Exactly I had problem in .htaccess file…
Before many months I put own redirect because of bug in old qtranslate plugin (my default language is CS):
RewriteCond %{HTTP_HOST} ^www.my-site.cz RewriteRule ^cs/(.*)$ https://www.my-site.cz/$1 [L,R=301]
So I commented this piece of code and now it’s OK and works properly…
Forum: Plugins
In reply to: [Weather Underground] Change tomorrow in daynameTemporary fix
Edit the following file on this path:
/wp-content/plugins/wunderground/templates/snippets/title.htmlFROM
{% if showdata.daynames is not empty %} {% if forecast.title is not empty %} <{{tag}} class="wu-day-title">{{ forecast.title }}</{{tag}}> {# Sometimes PWS stations don't have the title available #} {% elseif summary.date.weekday is not empty %} <{{tag}} class="wu-day-title">{{ summary.date.weekday }}</{{tag}}> {% else %} <{{tag}} class="wu-day-title">{{ strings.currently }}</{{tag}}> {% endif %} {% endif %}
TO
{% if showdata.daynames is not empty %} {% if summary.date.weekday is not empty %} <{{tag}} class="wu-day-title">{{ summary.date.weekday }}</{{tag}}> {% elseif forecast.title is not empty %} <{{tag}} class="wu-day-title">{{ forecast.title }}</{{tag}}> {# Sometimes PWS stations don't have the title available #} {% else %} <{{tag}} class="wu-day-title">{{ strings.currently }}</{{tag}}> {% endif %} {% endif %}
THEN wait cca 30-60 mins for Wunderground cache refresh, and finally voilà since change just ‘names of days’ in a title…
Forum: Plugins
In reply to: [Weather Underground] Change tomorrow in daynameI’m looking for some fix also. Actually I’m trying to find some piece of code in plugin where can I change this…
Forum: Plugins
In reply to: qTranslate-X – Can't switch back to default languageSame here… ??
Forum: Plugins
In reply to: [Product Catalog 8] Can't create categoryHere is the same problem as in products table:
(thread: https://www.ads-software.com/support/topic/can-not-add-new-products-to-new-catalogs)My log:
WP is trying to execute following SQL query:
INSERT INTOwp_pc8_categories
(category_name
,category_description
,catalog
) VALUES (‘Aaaaa’,”,’1′)MySQL Error:
#1364 – Field ‘position’ doesn’t have a default valueMy temporary fix:
I just set default value for attribute ‘position’ to 0 in ‘categories’ table in my DB…Pls improve your notifications by using result code of variable $wpdb in moment of insertion or anything else for display successful execution of statement or not. :o)
Forum: Plugins
In reply to: [Product Catalog 8] Can not add new products to new catalogsError log for developer to repair:
(I already fixed this very simple bug on my site for now, but i’ll wait for next official update as well)WP trying to execute this query:
INSERT INTOwp_pc8_products
(product_name
,product_description
,product_price
,product_link
,product_image
,product_category
,catalog
,product_subcategory
) VALUES (‘asdas’,’asdasdasd’,’23123′,’sadasd’,’https://asdasd’,’0′,’1′,’0′)MySQL error:
#1364 – Field ‘position’ doesn’t have a default value… I just set default value for attribute ‘position’ to 0 in products table in my DB…