Fuel
Forum Replies Created
-
Forum: Plugins
In reply to: [Helios Solutions Responsive category FAQ] Nothing ShowingHello,
what you did to display it?
Hello Jabe,
Sorry for your inconvenience, but we have tested it on our server and its work perfect. Please follow installation step, if you still cant get it, then please mail me your website Details.
Hello,
We have fix the Bug, please download the new version of plugin.
Forum: Plugins
In reply to: [Helios Solutions Social Media Buttons] Changing Icon ImageHello,
For this plugin We have use “social-icons.png” as background image, so you have to change this image with your own image, you can find this image in “images” folder.
Forum: Plugins
In reply to: [Helios Solutions Social Media Buttons] Google link not workingHi,
we double checked it with google plus link, it is working fine,
Are you using latest version of the plugin – currently it is 2.0.2 ?Still if you are having problem please send us your site details via PM
Forum: Plugins
In reply to: [Helios Solutions Social Media Buttons] Feature requestHi,
Please update the plugin with latest stable version 2.0.2.
Forum: Plugins
In reply to: [Helios Solutions Responsive category FAQ] Show Categories in All FAQ's listHi Joshua,
There are 3 possible ways to display faq’s in your theme
Display All FAQs on a single page
To display all FAQs on a page. Add Following Shortcode to your page.
[hs-faq limit="-1"]
Where limit specifies the number of posts to display. -1 will display all the posts.
So if you want to display only 5 FAQs. Then use following shortcode.
[hs-faq limit="5"]
To display FAQs of a specific category.To display FAQs of a specific category on a page. Add Following Shortcode to your page.
[hs-faq-cat id="14"]
Where 14 is the category ID.
Use shortcode in a PHP file, outside the post editor.You can also use the shortcode outside the post editor on a custom template.
echo do_shortcode('[hs-faq limit="-1"]');
Forum: Plugins
In reply to: [Helios Solutions Responsive category FAQ] Add your custom CSSHi Stardrive,
Please do following
1) Go to “FAQ’s ” -> “Settings”
2) There you will fine one text area called “Add your custom CSS”here you can add you custom css code which will override default css of plugin.
Hope this will help you.
Forum: Networking WordPress
In reply to: multi site for multi languages@ipstenu – Mike
Finally i solved it, I am sharing this so it might be useful for someone@mika, The way you are doing will not work for multisite:
Because:If you see the function at
wp-includes/i10n.php
function get_locale() { global $locale; if ( isset( $locale ) ) return apply_filters( 'locale', $locale ); // WPLANG is defined in wp-config. if ( defined( 'WPLANG' ) ) $locale = WPLANG; // If multisite, check options. if ( is_multisite() ) { // Don't check blog option when installing. if ( defined( 'WP_INSTALLING' ) || ( false === $ms_locale = get_option( 'WPLANG' ) ) ) $ms_locale = get_site_option('WPLANG'); if ( $ms_locale !== false ) $locale = $ms_locale; } if ( empty( $locale ) ) $locale = 'en_US'; return apply_filters( 'locale', $locale ); }le', $locale ); }
This function assumes, that if you have multiple websites and one
wp-config.php
, then this variable should be loaded from the database under totally different name$locale
.So be careful and remember that after installing WordPress multisite, translation files are loaded according to the site meta
WPLANG
, which is saved in DB. And don’t try to update this value from the admin panel, because it is buggy and does not work. Just go to the database with phpmyadmin and change the value there.Forum: Networking WordPress
In reply to: multi site for multi languagesi choose multisites instead of WPML. now only one help needed.
How to call different PO/MO files for theme based on different sites in multisite.
for e.g
German — de_DD.mo
Nedharland – nl_NL.moBut over here in wp-config.php — i can set only one language in ‘WP_LANG’ options for main language.
Forum: Networking WordPress
In reply to: multi site for multi languageshow did you manage this?
Currenlty i have same situation like you.
if I can make two sites by two languages by po/mo files using multi sites?Forum: Plugins
In reply to: [Remove Taxonomy Base Slug] Plugin not working, 404 errorIn my case – WordPress is installed as network.
I have 3 custom taxonomy which i have created from “Custom Post Type UI” Plugin. Which is rewrite rule.
Now How to proceed with this ?
Forum: Plugins
In reply to: [Helios Solutions Social Media Buttons] Feature requestHi,
Thanks for you comment.
We have added 2 new options in version 2.0In future release, We planned to make it dynamic, where user can add custom icons.
Hi Keha76,
Thanks a lot for your comment, I committed these changes to wordpress. You will get those in next release of plugin.
Wish you merry christmas in advance ??
Forum: Plugins
In reply to: [Simple Fields] Checking a checkbox using add_post_metaJimDestruct
I also want same.
If you find solutions, can you please guide me how?