vee
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Tooltips not displayingHow is it? Does it works?
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Tooltips not displayingDid you try this in js file?
jQuery(function () { jQuery('[data-toggle="tooltip"]').tooltip() })I read the Bootstrap doc it said
For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning you must initialize them yourself.
One way to initialize all tooltips on a page would be to select them by their data-toggle attribute:
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Tooltips not displayingDoes your child theme loaded the Bootstrap js?
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Gravatar/AvatarYou should use
get_avatar()function to get author’s avatar/gravatar.
https://codex.wordpress.org/Function_Reference/get_avatar
More references for use.if (!function_exists('bootstrapBasicPostOn')) { /** * display post date/time and author * * @return string */ function bootstrapBasicPostOn() { // $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>'; $time_string = ''; // printf(__('<span class="posted-on">Written by %1$s</span><span class="byline"> Written by %2$s</span>', 'bootstrap-basic'), printf(__('<span class="byline"> Written by %1$s</span>', 'bootstrap-basic'), sprintf('<span class="author vcard"><a href="%1$s" title="%2$s">%3$s</a></span> %4$s', esc_url(get_author_posts_url(get_the_author_meta('ID'))), esc_attr(sprintf(__('View all posts by %s', 'bootstrap-basic'), get_the_author())), esc_html(get_the_author()), get_avatar(get_the_author_meta( 'ID' )) ) ); }// bootstrapBasicPostOn }Forum: Plugins
In reply to: [Advanced Editor Tools] custom buttons?Hello
I know that there are answers about add custom button to TinyMCE here.
https://wordpress.org/support/topic/adding-additional-custom-buttons?replies=4I am able to add custom button to the TinyMCE but it is not listed or not even showing in the TinyMCE Advanced settings page.
But I want to know how to add custom button to the list of unused buttons in TinyMCE Advanced settings page?
Thanks.
@cuthza Tell them about mod_security and white listed your website.
If they still don’t know what to do then change your web hosting service.Thanks for @one50mph that is how I fix the problem.
Forum: Themes and Templates
In reply to: [Bootstrap Basic] Info.Moved github org: https://github.com/Rundiz/bootstrap-basic/commits/master
Forum: Plugins
In reply to: [Enhanced Media Library] Delete PluginHello
I agree to delete all the trace on db when people delete the plugin.
- media_category_children in options table
- wpuxss_* in options table
- media_category in term_taxonomy table
- anything related in term_relationships, terms tables
Thank you. 🙂
Forum: Reviews
In reply to: [Intuitive Custom Post Order] Good design – Poorly developedI agree about new post can slow down the server. I open the issue here. I hope that this way of ordering number is not cause of a problem.
Forum: Plugins
In reply to: [Simple Custom Post Order] Simple Custom Post Order HelpIt seems that new post to first is correctly. I think you have to manually re-order it after you save/published the post and then it can change the order as you want.
Forum: Plugins
In reply to: [FakerPress] Generate posts broken!Eh? Why can’t I reply the topic?
Forum: Plugins
In reply to: [FakerPress] Generate posts broken!Yep, I read that.
I found that the taxonomies did not generated because I select nothing in the list. (categories name, tags name)
I think that if it is not select it should means select all.Thank you.
Forum: Plugins
In reply to: [FakerPress] Pictures from Media Library only? (Feature Request)I can’t seem to find this implemented too.
I don’t want to hot-link images. (from media library only please).Forum: Themes and Templates
In reply to: [Bootstrap Basic] Featured imageIt was answered here.
Yes, it does support featured image.
As i said support featured image means i was addedadd_theme_support('post-thumbnails');in functions.php of the theme that author can have an option to set featured image.No, i did not call to any featured image functions (both
get_the_post_thumbnailorthe_post_thumbnail).
This theme is not ‘ready to use’ for end user (site admin, authors).
It is the theme that is based on Bootstrap v.3 for any theme developer to start build their theme with Bootstrap v.3.
You may have to call to featured image functions yourself at the position you want.