Peterkopi
Forum Replies Created
-
It’s been 8 months – is it done?
Forum: Plugins
In reply to: [Sociable] You're aware you've been hacked?Sad but true. Deactivate or uninstall the plugin!
Forum: Plugins
In reply to: [Facebook Like Box Widget] Problems after upgrade to WP 3.5Mine is broken too ??
Forum: Plugins
In reply to: [Facebook Like Box Widget] How to make your plugin responsive?I am interested in that issue too!
Forum: Plugins
In reply to: [Facebook Like Box Widget] Language ?@ djamelk – did it work?
Sorry, the “Recommend”-button, not the “Like”-button ??
I need help on this topic to, please…
I am using an updated Chrome and I am missing about 60 % of the text box when trying to recommend this page https://www.kongevejens-fodklinik.dk
Please look for the “Like” button on the right side close the bottom of the pages.
Thanx!
Forum: Plugins
In reply to: [Facebook Like Box Widget] Language ?The language is automatic!
Go to “Plugins” select “Editor” and open the file “Facebook Like Box” in the upper right corner.
In the open file (just opened in the WP Editor) find/locate “en_US” and change that in every case you find to your own language.
Find your language in this list: https://gcc.gnu.org/onlinedocs/libstdc++/manual/localization.htmlHappy editing ;-P
Forum: Plugins
In reply to: [Accordion Shortcode] [Plugin: Accordion Shortcode] Collapse allIn version Version: 1.2.1 I can find this on line 101-130:
public static function accordions_shortcode( $atts, $content ) { self::$add_script = true; if( is_string($atts) ) $atts = array(); $attr['autoHeight'] = self::eval_bool( $atts['autoheight'] ); $attr['disabled'] = self::eval_bool( $atts['disabled'] ); $attr['active'] = (int)$atts['active']; $attr['clearStyle'] = self::eval_bool( $atts['clearstyle']); $attr['collapsible']= self::eval_bool( $atts['collapsible']); $attr['fillSpace'] = self::eval_bool( $atts['fillspace']); $query_atts = shortcode_atts( array( 'autoHeight' => false, 'disabled' => false, 'active' => 0, 'animated' => 'slide', 'clearStyle' => false, 'collapsible' => false, 'event' => 'click', 'fillSpace' => false ), $attr); $id = "random-accordion-id-".rand(0,1000); $content = str_replace( "]<br />","]", ( substr( $content, 0 , 6 ) == "<br />" ? substr( $content, 6 ): $content ) ); self::$shortcode_js_data[$id] = $query_atts; return str_replace("\r\n", '', '<div id="'.$id.'" class="accordions-shortcode">'.do_shortcode( $content ).'</div>');
Maybe it’s somewhere around here I need to change the script to laod collapsed?
Forum: Plugins
In reply to: [Accordion Shortcode] [Plugin: Accordion Shortcode] Collapse allI am also trying to have all collapsed when the page is loaded, but the script must have been edited, because I can’t find
$attr['active'] = (int)$attr['active'];
on line 53, which now is showing:
'class' => null,
akhayyat’s workaround did NOT work for me.
Can anybody help, please?