Submenu on tablets and mobiles
Can't remove the padding between the map and the list below

After last update the "Install Plugins" option not available
Change order content in mobile
Overlay element on posts fetaured images
How to do that?
blog Shortcode extended to serve TAGS
BLOG Shortcode in BETHEME does not support TAG, only CATEGORY to select blog
here is the extension, just use
[*blog count="2" tag="" tag_id="" category="" style="modern" columns="" filters="0" greyscale="0" more="1" pagination="0"]
/clickandbuilds/Homeopathy/wp-content/themes/betheme/functions
file theme-shortcodes.php, search for BLOG = line 885
/* ---------------------------------------------------------------------------
* Blog [blog]
* --------------------------------------------------------------------------- */
if( ! function_exists( 'sc_blog' ) )
{
function sc_blog( $attr, $content = null )
{
extract(shortcode_atts(array(
'count' => 2,
'category' => '',
'category_multi' => '',
'exclude_id' => '',
'style' => 'classic',
'columns' => 3,
'greyscale' => '',
'more' => '',
'filters' => '',
'pagination' => '',
'load_more' => '',
'tag' =>'',
'tag_id' =>'',
), $attr));
$translate['filter'] = mfn_opts_get('translate') ? mfn_opts_get('translate-filter','Filter by') : __('Filter by','betheme');
$translate['tags'] = mfn_opts_get('translate') ? mfn_opts_get('translate-tags','Tags') : __('Tags','betheme');
$translate['authors'] = mfn_opts_get('translate') ? mfn_opts_get('translate-authors','Authors') : __('Authors','betheme');
$translate['all'] = mfn_opts_get('translate') ? mfn_opts_get('translate-item-all','All') : __('All','betheme');
$translate['categories'] = mfn_opts_get('translate') ? mfn_opts_get('translate-categories','Categories') : __('Categories','betheme');
$paged = ( get_query_var( 'paged' ) ) ? get_query_var( 'paged' ) : ( ( get_query_var( 'page' ) ) ? get_query_var( 'page' ) : 1 );
$args = array(
'posts_per_page' => intval($count),
'paged' => $paged,
'post_status' => 'publish',
'ignore_sticky_posts' => 0,
);
// private
if( is_user_logged_in() ){
$args['post_status'] = array('publish','private');
}
// categories
if( $category_multi ){
$args['category_name'] = trim( $category_multi );
} elseif( $category ){
$args['category_name'] = $category;
}
// tag
if( $tag ){
$args['tag'] = trim( $tag );
}
// tag_id
if( $tag_id ){
$args['tag_id'] = trim( $tag_id );
}
// exclude posts
if( $exclude_id ){
$exclude_id = str_replace( ' ', '', $exclude_id );
$args['post__not_in'] = explode( ',', $exclude_id );
}
......
List (bullet points)
Safari pre-built website
BeTheme overriding the WP gallery?
Is there any way or setting of BeTheme that is already overriding or influencing the wp gallery?
A while ago I had a plugin working that gave a great look&feel to my default WP galleries. But now BeTheme seems to be interfering with this? When I switch to WP's default theme, it works but not with BeTheme on.
Blog by TAG
Change color of subheader
i can't find an option to change the color of the subheader?
Meta description get my alt img


Change text color of search bar
Text next to button, 2 menu colors



Remove "On Sale" Badge
Line breaks not showing
i'm using the 'Team's' module and the line breaks keep disappearing. I've gone in manually and added <b></br> and it still doesn't work.
It's also happened in other areas of the site, both when i use the Muffin builder and the WP Bakery.
http://www.spectrumspeech.linux.hostaway.net.au/about-us
Change blog text background
The background colour for the text is currently a white default, the text is black.
I'd like to make it transparent (no background colour behind the black text) so that the background specified in the page wrap for the website can be seen behind the blog text.
Thank you!
TAG list of post right under the post-text
/clickandbuilds/Homeopathy/wp-content/themes/betheme/functions/builder/front.php
Line 24 edit this function MFN_BUILDER_PRINT_CONTENT as is shown underneath
*/
function mfn_builder_print_content( $post_id, $content_field = false ){
$class = get_post_field( 'post_content', $post_id ) ? 'has_content' : 'no_content' ;
echo '<div class="section the_content '. $class .'">';
if( ! get_post_meta( $post_id, 'mfn-post-hide-content', true )){
echo '<div class="section_wrapper">';
echo '<div class="the_content_wrapper">';
if( $content_field ){
echo apply_filters( 'the_content', get_post_field( 'post_content', $post_id ) );
} else {
the_content();
}
echo '<div class="heli_tags">' ; the_tags(); echo '</div>' ; /* added by heli */
echo '</div>';
echo '</div>';
}
echo '</div>';
}
}