BDDierks
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Social Comments] Not working on Safari? (both web and mobile)Just popped up for us as well.
WP Facebook Comments v. 1.3Forum: Plugins
In reply to: [AMP] Google Search Console Amp errorsOk, found the issue (at least for me).
The ‘default site icon’ in the ‘customize theme’ did not exist. The plug-in is looking for that in order to populate the data.
Uploaded a new 512px x 512px image, and it corrected the data issue.Forum: Plugins
In reply to: [AMP] Google Search Console Amp errorsI am having issues with the logo missing as well.
Penny, I’m pretty sure that you can fix your image problem by adding a ‘Featured Image’ to the post.
Outstanding! Thanks!
I am having the same issue – updated to Version 3.19 just now, and I am still not able to configure dates.
Forum: Plugins
In reply to: [Ultimate Product Catalog] Shortcodes.php PHP version function incorrectDysfunctional – no. Just something that I noticed.
Forum: Plugins
In reply to: [Ultimate Product Catalog] Shortcodes.php PHP version function incorrectEr:
function UPCP_Return_PHP_Version() { $PHP_Version_Array = explode(".", phpversion()); $PHP_Version_Number = $PHP_Version_Array[0] * 10000 + $PHP_Version_Array[1] * 100 + $PHP_Version_Array[2]; return $PHP_Version_Number; }
OK, so I’m a bit flustered with this not working…
Forum: Plugins
In reply to: [Ultimate Product Catalog] Shortcodes.php PHP version function incorrectMy mistake – the correct code should be:
function UPCP_Return_PHP_Version() { $PHP_Version_Array = explode(".", phpversion()); $PHP_Version_Number = $PHP_Version_Array[0] * 10000 . $PHP_Version_Array[1] * 100 . $PHP_Version_Array[2]; return $PHP_Version_Number; }
Forum: Plugins
In reply to: [Ultimate Product Catalog] Sorting categories and filteringI am having the same issue.
I have switched to default themes and disabled all other plugins.
Filtering for cat-2:POST Request:
/wp-admin/admin-ajax.php
id=2&sidebar=Yes&start_layout=&excluded_layouts=undefined&ajax_url=/hunting¤t_page=1&default_search_text
=Search...&ajax_reload=Yes&Prod_Name=Search...&max_price=500&min_price=0&Category=2&SubCategory=&Tags
=&Custom_Fields=&request_count=1&action=update_catalogue
The ajax request is firing, and the response is coming back with a JSON object that contains:
{"request_count":"1","message":"<div id='prod-cat-2' class='prod-cat thumb-display '>\n<div id='prod-cat-category-2'
class='prod-cat-category upcp-thumb-category'>\n<\/div><div class='upcp-clear'><\/div>\n<\/div>\n<div
class='upcp-clear'><\/div><div id='prod-cat-2' class='prod-cat list-display hidden-field'>\n<div id
='prod-cat-category-2' class='prod-cat-category upcp-list-category'>\n<\/div><div class='upcp-clear'
><\/div>\n<\/div>\n<div class='upcp-clear'><\/div><div id='prod-cat-2' class='prod-cat detail-display
hidden-field'>\n<div id='prod-cat-category-2' class='prod-cat-category upcp-detail-category'>\n<\/div
><div class='upcp-clear'><\/div>\n<\/div>\n<div class='upcp-clear'><\/div>"}0
I do not understand the trailing (0) in the response, but the fields are not being populated.
Any assistance would be appreciated.
Solution to Problem #1:
In “\adrotate\library\jquery.adrotate.dyngroup.js”
Original code:
Line 37: for(n = 1; n < length; n++)
Corrected code:
Line 37: for(n = 1; n <= length; n++)Temporary solution to Problem #2:
CSS:
Add .g > div{display:none;} To hide all of the banners on load. The JS will take over once it runs.
JS:
In “\adrotate\library\jquery.adrotate.dyngroup.js”
Original Code:
Line 54: $cont.find(“.c-” + index).fadeOut(300);
Adjusted Code:
Line 54: $cont.find(“.c-” + index).fadeOut(0);The temporary solution is not the most elegant, nor is it really a correct solution, but it fixed my issues. Once the group CSS is taken care of, it should no longer be necessary.
Forum: Plugins
In reply to: [YUZO] Responsive layout [Feature Request]I’m looking for it to, for instance, show 4 related articles in 2 columns, ±50% of the parent element’s width, and scale based on the size of the window / device so it basically looks the same whether on a desktop or mobile device instead of collapsing below each other in a single column.
So, adding the ability to set the number of columns that the articles would display in:
2 cols – ±50% of the parent element width
4 cols – ±25% of the parent element width
etc… although more than 2 columns starts getting a little small on an iPhone.I hope I explained that well enough.
Forum: Plugins
In reply to: [YUZO] Version 2.0 disables "quick edit" on posts and categoriesSorry it took so long to get back to you.
Updated to 2.0.2 – > everything seems to work now.
Thank you!Forum: Plugins
In reply to: [YUZO] Version 2.0 disables "quick edit" on posts and categoriesGo to “all posts” or “categories” under “Posts”.
Mouse-over the title, and click the “quick edit” link beneath.
The quick edit dropdown does not appear.Is there an ETA on 3.10.8 (I’m assuming the fix is in this release…)?
Any status on this?