SEO Squirrly
Forum Replies Created
-
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] Multiplie Starboxes on one page?Hey,
You can use a function like this one:
add_action('init','starBoxCustom'); function starBoxCustom(){ if (!class_exists('ABH_Controllers_Frontend')) return; ABH_Classes_ObjController::getController('ABH_Controllers_Frontend')->custom = true; } function starBoxShowAll() { if (!class_exists('ABH_Controllers_Frontend')) return; ABH_Classes_ObjController::getController('ABH_Classes_Tools'); $args = array( 'orderyby' => 'post_count', 'order' => 'DESC' ); $users = get_users($args); $theme = ABH_Classes_Tools::getOption('abh_theme'); $str = ''; $str .= '<script type="text/javascript" src="' . _ABH_ALL_THEMES_URL_ . $theme . '/js/frontend.js?ver=' . ABH_VERSION . '"></script>'; $str .= '<link rel="stylesheet" href="' . _ABH_ALL_THEMES_URL_ . $theme . '/css/frontend.css?ver=' . ABH_VERSION . '" type="text/css" media="all" />'; foreach ($users as $user) { $str .= ABH_Classes_ObjController::getController('ABH_Controllers_Frontend')->showBox($user->ID); } return $str; }Now just call starBoxShowAll(); where you want to add it.
Good luck!
CalinForum: Plugins
In reply to: [Starbox - the Author Box for Humans] Frontend translationPlease send it to support[at]squirrly.co
Also you can rate the plugin at:
http://wordpress.org/support/view/plugin-reviews/starboxThank you so much Joerg for your help
Calin
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] Frontend translationGot it.
I made an update.
Please reinstall StarBox and it should load the translations in frontend now.You will not lose the saved settings is you delete the plugin and reinstall it.
Just be sure you have a backup for your translation.
Calin
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] Frontend translationHey Joerg,
Thank you so much for your translations
Do you have a cache plugin installed?
If yes, please empty the cache and it should work.Thanks again
CalinForum: Plugins
In reply to: [Starbox - the Author Box for Humans] Can this Feature be added?Thank you Martin for your suggestion, I will add this option in the future updates. Please rate the product to support us.
Thanks again
Calin
Forum: Reviews
In reply to: [Starbox - the Author Box for Humans] Simply perfectThank you so much for your feedback.
Calin
Thank you so much for your feedback.
Calin
Hey Michael,
Please reinstal Starbox in your blog and it should work. You will not lose any user setting.
Thank you for the feedback
Calin
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPIt should work.
Just set the custom variable to true and it should work:ABH_Classes_ObjController::getController('ABH_Controllers_Frontend')->custom = true;Calin
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] Auto detect Post typeOkay, I added a filter to show the author box only in post type = “post”
You can check now if is working for you.Please re-install the plugin (will not remove your data)
I will add some options in settings in the future.
Please also write a short review for StarBox to support us.
Thank you so much
Calin
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] Auto detect Post typeHey,
Great question and I will implement this option in StarBox Settings.
Please send me a link with a plugin that has post type option.Thanks
CalinForum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPYou can add it in content like this:
add_filter( 'the_content', 'filter_function_name' ); function filter_function_name($content){ if (class_exists('ABH_Classes_ObjController')) { $content .= ABH_Classes_ObjController::getController('ABH_Controllers_Frontend')->showBox(); } return $content; }Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPYour custom box div will have the class: abh_box_down
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] How to call the authorbox in PHPHey,
Your idea is great and I made you a function in the last update.
You can show the author with:
if (class_exists(‘ABH_Classes_ObjController’)) {
echo ABH_Classes_ObjController::getController(‘ABH_Controllers_Frontend’)->showBox();
}Hope it helps
Calin
Forum: Plugins
In reply to: [Starbox - the Author Box for Humans] Broke after updateGreat to hear that.
I will check if we can clear the cache for WPSuper Cache on StarBox Updates.
Please rate our plugin, we need your support.
Thanks
Calin