Raja
Forum Replies Created
-
Forum: Plugins
In reply to: [WP RSS Multi Importer] Facebook images – only thumbnailsI have switched to this free plugin.. it does work with full size image out of the box !!! feed-them-social
Forum: Plugins
In reply to: [WP RSS Multi Importer] Facebook Feed URLI have the same issue..
Can’t get the public facebook feed url of my page.. I’m stuck..
Forum: Plugins
In reply to: [Custom Content by Country (by Shield Security)] US and Everywhere elseFrom plugin’s FAQ page,
To show the text “abcdefg” ONLY to visitors from the US and France, I would use the following shortcode:
[CBC country=”us, fr” show=”y”]abcdefg[/CBC]
so for your case, please use this shortcode
[CBC country=”us” show=”y”]XYZ[/CBC]
[CBC country=”us” show=”n”]ABC[/CBC]I hope this will work for you!
Forum: Plugins
In reply to: [Custom Content by Country (by Shield Security)] cannot load over httpsI have same issue
Forum: Plugins
In reply to: [Frontend Uploader] How to allow other file types on Frontend UploaderHi Jonas,
Please copy/paste the following code into your active theme’s functions.php. this will work…
add_filter( 'fu_allowed_mime_types', 'my_fu_allowed_mime_types' ); function my_fu_allowed_mime_types( $mime_types ) { /* I've added all the possible mime types for stl, skp. you can get mime types info in following urls, 1.http://filext.com/file-extension/STL 2.http://www.filesuffix.com/en/extension/skp */ $mimes = array( 'application/vnd.ms-pki.stl', 'application/x-stl'. 'application/vnd.sketchup.skp' ); foreach( $mimes as $mime ) { $orig_mime = $mime; preg_replace("/[^0-9a-zA-Z ]/", "", $mime ); // I have added stl and skp extensions here $mime_types['application/vnd.ms-pki.stl|stl|stl_|skp|skp_' . $mime ] = $orig_mime; } return $mime_types; }cheers
Forum: Fixing WordPress
In reply to: help site wont openHi,
Can you please give me the url of your site?
Same issue for me, have you found any solution?
Forum: Plugins
In reply to: [Frontend Uploader] How to allow other file types on Frontend UploaderOh, great. Thanks for your update.
cheers.Forum: Plugins
In reply to: [Frontend Uploader] How to allow other file types on Frontend UploaderHi jlow82,
am wondering how you solved it !
Sorry , I’m new to wordpress , I have no idea about your second question.
cheers,
Forum: Plugins
In reply to: [Frontend Uploader] How to upload multiple custom extensionsHi jlow82,
Please find the solution here
http://ww.wp.xz.cn/support/topic/how-to-allow-other-file-types-on-frontend-uploader?replies=6#post-5072394cheers,
Forum: Plugins
In reply to: [Frontend Uploader] How to allow other file types on Frontend UploaderJust copy paste the following code anywhere in your theme’s functions.php
add_filter( ‘fu_allowed_mime_types’, ‘my_fu_allowed_mime_types’ );
function my_fu_allowed_mime_types( $mime_types ) {/* I’ve added all the possible mime types for stl, skp.
you can get mime types info in following urls,
1.http://filext.com/file-extension/STL
2.http://www.filesuffix.com/en/extension/skp
*/$mimes = array( ‘application/vnd.ms-pki.stl’, ‘application/x-stl’. ‘application/vnd.sketchup.skp’ );
foreach( $mimes as $mime ) {
$orig_mime = $mime;
preg_replace(“/[^0-9a-zA-Z ]/”, “”, $mime );// I have added stl and skp extensions here
$mime_types[‘stl|stl_|skp|skp_’ . $mime ] = $orig_mime;
}
return $mime_types;I hope this will work.
Forum: Hacks
In reply to: Embed pdf automatically after upload via mediaThank you so much bcworkz, yes you are right, It is my theme’s template file. As you said, it is easy to edit that file.
I can create a new template file from my theme’s template file, but I’m not sure when and where to call my temlpate to load.
Anyway I’m going to learn it from the links you have given, let me try it.
Once gain thank you so much for your kind reply.
Cheers,
Forum: Hacks
In reply to: Embed pdf automatically after upload via mediaHi bcworkz,
Thank for your reply.
I’m new to wordpress, sorry actually I don’t know how to create a CTP or template file.
I’m editing the attachment page itself, is that good to edit the actual attachment page?
Cheers.
Forum: Plugins
In reply to: [Frontend Uploader] How to upload multiple custom extensionsNever mind my previous question. I found the solution. 🙂
Forum: Plugins
In reply to: [Frontend Uploader] Need to edit formCheck “Suppress default fields” in front en uploader settings and
Just copy paste this code in your page/post[fu-upload-form class=”your-class” title=”Upload your media”]
[input type=”text” name=”post_title” id=”title” class=”required” description=”Title” multiple=””][input type=”text” name=”user_name” id=”name” class=”required” description=”Your Name” multiple=””]
[textarea name=”post_content” class=”textarea” id=”ug_caption” description=”Description (optional)”]
[input type=”file” name=”photo” id=”ug_photo” class=”required” description=”Your Files” multiple=””]
[input type=”submit” class=”btn” value=”Submit”]
[/fu-upload-form]