conualfy
Forum Replies Created
-
Forum: Themes and Templates
In reply to: No menu in Twenty Fifteen (partially on Twenty Fourteen, too)I found the reason for this, it was my fault ?? Thanks.
Forum: Plugins
In reply to: [Yoast SEO] Is it possible to add Facebook Author Tag?I did that already, it works. Thanks to everybody who replied here.
Forum: Plugins
In reply to: [Yoast SEO] Is it possible to add Facebook Author Tag?Daniel – I could see your code, it works fine on your site. I wonder, how could we activate it also? Are you sure it comes from WordPress SEO and not from some other plugin or theme?
Forum: Plugins
In reply to: [Geo Tag] DATA LOSS – Quick Edit BugDo you know if there is an update on this? Another bug is on autosave, it seems to miss the geotag set to that post.
Yes, this is the method to clear the “Share and Enjoy” stuff on the first page, thanks. Maybe you should make it clear where it appears, I do not find Template1 and Template2 very intuitive about the place they appear. For instance, bellow there is a checkbox which also contains “Show in front page”, which would make sense that if disabled, something dissapers from front page, but the “Share and Enjoy” does not. On my site I might want the sharing icons to appear, but not this, or vice-versa. It is confusing.
Forum: Alpha/Beta/RC
In reply to: Visual post editor is blankThanks. In my case I might have found a solution, but most of the users will not, it should work out of the box.
Just to clear things up: Actually the
ro.js
did not exist previous to my manual creation, that was after I discovered this bug (only en, de, fr and hu existed in the plugin). I put it there just to debug.Forum: Alpha/Beta/RC
In reply to: Visual post editor is blankIt is not loaded by default, the file does not exist in Cforms unless it is manually created. Only since I updated to 3.9 it is required. So something changed because of that.
Forum: Alpha/Beta/RC
In reply to: Visual post editor is blankI figured out what is causing it: in the new 3.9 WP, because I use the ro_RO localization, it somehow forces my
cforms
plugin to have the same language file in it’s folderdomain.tld/wp-content/plugins/cforms/js/langs/ro_RO.js
, which I do not have by default.
"Failed to load: https://domain.tld/wp-content/plugins/cforms/js/langs/ro_RO.js" tinymce.js:7761
As I could see, the plugin uses simple names
en.js / de.js / fr.js
. I manually created thero.js
and it still does not make tinymce work; renaming it toro_RO.js
gets the things working (but it might not make the plugin work if it needs it’s own filename standards).I do not get it why it forces me to create the language file for a plugin. It should first check if it exists and only then should use that file, just like localizaton works with .mo files, the website does not fail if you miss the file, it will only not use any translation ??
Forum: Plugins
In reply to: [Digg Digg] How to disable copy-paste clipboard interventionDisabling the email sharing removes the See more at text. It seems to be added by ShareThis service.
Forum: Plugins
In reply to: [Digg Digg] How to disable copy-paste clipboard interventionReplaced both
<
,>
and"
with their codes (<
,>
,"
) and it works. Now all I would like is to stop adding ” – See more at…”. Does anyone know how to do that? Thanks! ??Forum: Plugins
In reply to: [Digg Digg] How to disable copy-paste clipboard interventionI found a workaround, I put the code on a new line of text and I can copy it now. But it replaces my code’s double quotes with some others that will not work.
Forum: Plugins
In reply to: [Digg Digg] How to disable copy-paste clipboard interventionThe page you can see my code to be copied is here: https://goo.gl/qePHxW
You are talking about something else. What I said is that the scripts are loaded on all pages/posts, not only on the ones including sounds. I have 3 posts with sounds, but this plugin filters and includes the scripts in all posts (1000 posts). It makes websites slower than it should. Sorry if I was not very clear in the first post.
Just in case others people need a solution, for now, I have found a functional solution by editing 2 plugin files. At least in my installation, now it does not run Lightbox Plus for Jetpack’s Tiled Gallery images.
1. In
lightboxplus.php
I disabled theelse
after line 237 as it is useless in our case//else { //remove_shortcode( 'gallery' ); //add_shortcode( 'gallery', array( &$this, 'lightboxPlusGallery' ), 6); //add_filter( 'the_content', array( &$this, 'filterLightboxPlusReplace' ), 11 ); //}
2. In
classes/actions.class.php
I added a new check in the part that checks all image links; we check if the current link has a grandparent having the classtiled-gallery-item
. If it has this class, it is an image of Jetpack’s tiled-gallery. It is somewhere around line 150.
Afterforeach($html->find('a[href*=jpg$] img, a[href*=gif$] img, a[href*=png$] img, a[href*=jpeg$] img, a[href*=bmp$] img') as $e) { /** * Generate HTML5 yes/no */
Add our condition:
$e1 = $e->parent(); if (strpos($e1->parent()->class, 'tiled-gallery-item') !== false) { break; }
Forum: Themes and Templates
In reply to: [The Bootstrap] Blocking Jetpack CarouselFixed it. The problem was with
the_bootstrap_post_gallery
function which interferes with JetPack’s sub-plugins. I have commented it in functions.php and it works now.