Sebastian Echeverry
Forum Replies Created
-
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Set some extra fields as requiredAlso is it possible to set the honorific as not required?
Forum: Plugins
In reply to: [Magic Embeds] Can't use your plugin to embed photo sets.Other thing.
If there is an album_id instead a set, you can add to class-wp-embed.php:149:
if ( isset( $vars['album_id'] ) ) { $fb_id = $vars['album_id']; $type = 'album'; $juice = 'media/set/'; }
Forum: Plugins
In reply to: [Tagregator] Third party sourcesGlad to hear you would see the changes.
If you want to see it working here is the link to the page. It is the Rock Fest from the second biggest city in my country.
https://altavozfest.co/inicio/redes/
*******************************************************
Changes in tagregator:
*****
In order to allow tagregator to use my external plugin (the one that adds the feeds from my clients fb page) the bootstrap instance has to be declared after the plugin activation. So, the last part of the code in the bootstrap (the one tat declares the tagregator instance) has to be a function called with this:
add_action( ‘plugins_loaded’, ‘tagregator_start’ );
*****
In order to have a page without javascript where a cron call would update the feed, I have modified the import_new_items visibility so it can be called publicly.
*******************************************************
My cron solution:
I don’t want to force a random user to wait while the cron updates the feed (sometimes 10 seconds each hashtag), so I prefer to use an external cron service for these calls.
This is the page in my site called by the cronjob (https://www.setcronjob.com/). Inside the theme I have a place to configure the hashtags separated by commas, so my user doesn’t have to create a special page with a shortcode on it for each hashtag. This special page would detect the “page number” and look for that item in the hastags list, and call the page using the import_new_items function (that’s why I modified it to be public).
*******************************************************
My FB-page-source class:
This is the link to my ‘facebook page feeds’ class.
I have this directory inside my plugin and I called it using this:
function fes_register_tggr( $media_sources ) { require_once( dirname( __FILE__ ) . '/tagregator/classes/tggr-source-facebook.php' ); $media_sources[ 'TGGRSourceFacebook' ] = TGGRSourceFacebook::get_instance(); return $media_sources; } add_filter( 'tggr_media_sources', 'fes_register_tggr' );
Forum: Plugins
In reply to: [SoundCloud Is Gold] Changes required for an HTTPS siteUPDATE: also change ‘http%3A%2F%2F’ to ‘%2F%2F’ (flash player)
Forum: Plugins
In reply to: [SoundCloud Is Gold] Changes required for an HTTPS siteUPDATE: only change the sections beginning with //Flash Player and //HTML5 Player
Forum: Plugins
In reply to: [Visual Subtitle] Debug ErrorTo solve this bug I have modified the line 98 in class-visual-subtitle.php
if(!is_admin()) add_filter( 'the_title', array( $this, 'filter' ), 10, 2 );
Hope this will help.
Forum: Plugins
In reply to: [Youtuber] YouTuber not accepting YouTube tag anymoreHello.
Youtuber now uses the WP’s shortcode recommendations, but it still uses the old tag system for legacy compatibility.
I have checked using the tag you wrote
[youtube]u4gFIHvIB4E[/youtube]
and it worked for me.Are you still using Youtuber in your page?
Forum: Plugins
In reply to: [Disqus Comment System] Guest book (schreikasten) – admin "error"Thanks for posting the solution to this bug. I’ll check it and add this solution to the next release.
Forum: Plugins
In reply to: [Scissors and Watermark] Errors while cropping imagesIf you use ‘Dynamic Image Resizer’, change the line 1148 with this:
if ( !function_exists(‘dynimg_image_sizes_advanced’) && !wp_update_attachment_metadata( $post->ID, $new_metadata ) ):
Forum: Plugins
In reply to: [Scissors and Watermark] Errors while cropping imagesHello,
same situation here, but I have found a way to pass throught this. First create the crop for the ‘thumbnail’ and then creatre the crop for your custom-size image. It works for me.
I use the ‘Dynamic Image Resizer’ plugin.
Forum: Plugins
In reply to: [Schreikasten] Non-Fatal Error ReporHi Adam, thanks for the bug report.
I’ll check this next week and will post you back to ask for your help.
Thanks in advance.
Happy holydays.
Forum: Plugins
In reply to: [Schreikasten] XSS Exploit. Weakness in SchreikastenHi square_eyes.
I know I’m late, sorry.
SK uses the same security functions WP uses, and the only difference is SK allows images.
In this thread you suggested that your site has been attacked using a png image. Can you confirm other attacks using images?
I suggested time ago I can add a way to ‘select if you want to allow images’ in settings. I will do that, but I can’t ask you to test SK again because it is too dangerous for your site.
Just answer me those two questions and thanks for you support.
I’m sorry if this plugin gives you a headache. I’ll try to find where the problem is.
Forum: Plugins
In reply to: [Indizar] [Plugin: Indizar] Add different comment form on indexed post?Hola Blushark.
Gracias por la traducción. Envíalos a [email protected]
Envía también una URL a tu página personal o de tu empresa para ponerlo en la lista de agradecimientos.
Forum: Plugins
In reply to: [Indizar] [Plugin: Indizar] Add different comment form on indexed post?Hi utchanovsky.
Sorry if I’m late.
Unfortunately there isn’t anything I can do to help you with this requirement, but there are something you can do to add the feature you need.
Any 3rd party comment system requires a unique ID to know which comments group to show. Probably IntenseDebate uses the URL, so it generates different comment groups for each chapter because each one has his own URL. But WP’s default comment system and Disqus use the post ID, not the URL, and that’s why different chapters in the same post use the same ID, therefor has the same comment group.
There is nothing you can do to have separated comments for each chapter if you use WP default comment system, but if you have some programming skills, I suggest you to find the script (Disqus or Livefyre) that declares the ID and modify it concatenating the chapter number.
Tell me if you need some help with this coding.
Kind regards from Colombia.
Forum: Plugins
In reply to: [Indizar] [Plugin: Indizar] Add different comment form on indexed post?Hi utchanovsky
Could you give me a URL to see the problem?