Lea
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Popular Posts] Default Thumbnail Won't ChangeHi
I can grant you access to our development site, if you want. Please tell me where to send the details to.
Lea
Forum: Plugins
In reply to: [WordPress Popular Posts] Default Thumbnail Won't ChangeHi Hector
I’m having the same problem.
The other user’s steps are exactly identical to my scenario.
However, I do get an error in the console:
"NetworkError: 404 Not Found - https://dev.linux.ort.org.il/kamoha/wp-admin/undefined"
And I’d like to ask regarding the last advice you gave the original poster:replacing the default no_thumb.jpg image in wp-content/plugins/wordpress-popular-posts with my own.
But wouldn’t that get overridden on plugin update?
Thank you!
Forum: Plugins
In reply to: [Facebook Comments] PHP Warnings – Use of undefined constant countHi Alex
As per this question on SO, it seems all you have to do is quote your array keys.
Is that possible?
Forum: Plugins
In reply to: [Facebook Comments] PHP Warnings – Use of undefined constant countHi Alex,
Thank you for a great plugin! It has worked fine, until in the last few days I’ve been seeing the same errors as above, on my site logs. I’m using WP 4.0.
Is there a solution to this?Thanks
LeaForum: Plugins
In reply to: [WordPress Popular Posts] esc_attr($title) doesn't escape quotesHi Hector,
Thanks for the explanation!
However, I upgraded to the latest release, and the problem is back again. Does that make sense?Thanks!
I accidentally clicked the Resolved button, but I didn;t mena to – this of course isn’t resolved at all, and also I didn’t open the issue, so it’s not mine to close…
Hi Peter
I’m joining in on the compliments – it’s really a great plugin, and all the options to control it from the admin are wonderful.
But I too am concerned about the lack of validation due to the autosave and results attributes. If it’s easy to fix, I’d appreciate it.
Forum: Plugins
In reply to: [WordPress Popular Posts] esc_attr($title) doesn't escape quotesHi Hector,
Thank you so much! It helped!
I’m a programmer, so if you could explain how you fixed the bug, I would be very interested to hear (I looked over the code, but there are so many differences, that I’m not sure what exactly was the bug fix for this ?? I do see that you used the site’s charset. Is that part of the solution?)Again, thank you!
Forum: Plugins
In reply to: [WordPress Popular Posts] esc_attr($title) doesn't escape quotesHi Héctor
Thank you so much for looking into this.
Of course I should have said it in my original post – I’m using the wpp_get_mostpopular() function call.Here is my code:
<?php /* prepare args for wpp_get_mostpopular: * In order to show thumbnail - need to set thumb width and height. * In order to show excerpt - have to set excerpt_length. * In order for the posts to get our style, we set custom HTML. class names have to use one apostrophe, and be escaped */ $custom_html = '<li class=\'clear\'>' . '<article class=\'hentry\'>' . ' <span class=\'image-wrapper\'>{thumb} </span>' /* span needed for class image-wrapper. not goog, but necessary*/ . ' <section class=\'entry-body\'>' . ' <header class=\'entry-header\'><h1 class=\'entry-title\'><a href=\'{url}\'>{text_title}</a></h1></header>' . ' <div class=\'entry-summary\'>{summary} </div>' . ' <footer class=\'entry-meta\'>{stats}</footer>' . ' </section>' . '</article>' . '</li>'; $wpp_args = 'limit=4&range="all"&thumbnail_width=' . TEENY_WIDTH . '&thumbnail_height=' . TEENY_HEIGHT . '&excerpt_length=' . TAB_EXCERPT_3_ROWS . '&stats_date=true&stats_date_format="F j, Y"&post_html="' . $custom_html . '"'; wpp_get_mostpopular($wpp_args); ?>
Forum: Plugins
In reply to: [Front-end Editor for WordPress] 2 RTL issuesOk, I found the source of the problem.
In an rtl site, the \wordpress\wp-includes\css\admin-bar-rtl.css is used, and in it there is the following definition:
html:lang(he-il) .rtl #wpadminbar * { font-family: Arial, sans-serif; }
So that of course cancels the use of the dashicons font in the admin bar…
Is there a way to counter this?
Forum: Plugins
In reply to: [Front-end Editor for WordPress] 2 RTL issuesRegarding issue 1 – there really isn’t any reason to make a special stylesheet for RTL, because other that this issue I haven’t spotted anything else. Maybe all we need in a RTL styleshhet is the dashicons font definitions?
Issue 2 happens even when disabling all plugins (other than FEE) and switching to the twenty-fourteen theme…. Might it have something to do with non-ascii characters? I tried FEE in an english site, and there wasn’t any problem there…
Thanks so much
Forum: Plugins
In reply to: [Lazy Load] Option to not enqueue JS by page?The solution I found was dequeuing the scripts, in my theme.
So if you have control over your theme (i.e you built your own, and can modify it to your heart’s content), you can add this to your functions. php:
function mop_enqueue_site_scripts () { global $wp_scripts; if (is_home()){ if ( in_array ( 'wpcom-lazy-load-images', $wp_scripts -> queue ) ) { wp_dequeue_script('wpcom-lazy-load-images'); } if ( in_array ( 'jquery-sonar', $wp_scripts -> queue ) ) { wp_dequeue_script('jquery-sonar'); } } } add_action ( 'wp_enqueue_scripts', 'mop_enqueue_site_scripts' );
Forum: Plugins
In reply to: [MP6] rtl last comments paddingThank you very much!!!
Forum: Plugins
In reply to: [MP6] rtl last comments paddingHi
Is there any news on this? I know it’s a small thing, and only in the RTL version, but I’d really appreciate a fix.
In addition, there’s something else wierd in the rtl version: there is another arrow in the adminmenu sub-menu : https://grab.by/r6O2
Thanks
Forum: Plugins
In reply to: [MP6] Version 1.6 totally broken in RTLThanks a lot! Deleting and re-installing indeed solved it ??