Quantcast
Channel: Betheme Support Forum
Viewing all 93029 articles
Browse latest View live

Submenu on tablets and mobiles

$
0
0
Hello ,

I am trying to find a way so the submenu can be seen better.
Now there is a little cross placed on the wright that I am trying to make bigger in order to be more visible

Any help would be appreciated

Can't remove the padding between the map and the list below

$
0
0
Hi there,
I am using the coaching demo template to create my site, I am trying to add in contact us page with map and the contact us info below it, I had set the padding for map and the the list below to 0, but no matter what I do, there is big gap between the map and the list below. Besides that the left and right hand side of the map also has small gap in between. (refer to the image)

image
While for the "list" item, I want to have bigger padding so that the text won't be so closed to the top, but no matter what number I put in, the padding remain the same...please help..

After last update the "Install Plugins" option not available

$
0
0
Hi, after the last BeTheme update, some of my sites don't give me the "Install Plugins" option any more. It used to be there before but now it's not there. If I then go onto the theme dashboard and follow the link given there to go the bundled plugins, it tells me "Sorry, you are not allowed to access this page." Please note that it did work before I updated the theme. 2 specific domains are peripericreative.co.za and akademia.ac.za.

Change order content in mobile

$
0
0
Hello,

I am building a website using muffin builder ...

In this moment I have this example in desktop:


In mobile i wanted the content thus:

image
title + Description
-
image
title + Description
-
image
title + Description

In mobile appears:


Is it possible to change the order of content in mobile?

Please can you teach me?

Thanks.

Overlay element on posts fetaured images

blog Shortcode extended to serve TAGS

$
0
0

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)

$
0
0
Hi guys
I'm trying to write a simple list of phrases in the page content , but when i chose bullet points list, basically it don't work!
Also using "FALCO theme" it didn't work except using the shortcode <ul class="list"></ul>.
I try to use the same shortcode but it don't works!
Have you any suggestion?
Thanks a lot.
Carlo

Safari pre-built website

$
0
0
Hello
I am using the "Safari" pre-built website, and when I add a new section, the content of this section automatically expands to fill twice times the width of the browser window.

I do not know if there is any default option on this pre-built website that makes the content of any new element occupy twice the size of the window. Can you help me to locate this option?

Thank you in advance.

Regards,
Julian

BeTheme overriding the WP gallery?

$
0
0
Hello,
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.

Thank you!

Blog by TAG

$
0
0

have my website organized heavily with tags (e.g. category=science, tag=cancer)
need blog shortcode usable with tags

Please have a look, couldnt get it running:as expected to use tags (in addition or instead of categories)


... /wp-content/themes/betheme/functions/theme-shortcodes.php  line 885


/* ---------------------------------------------------------------------------
 * Blog [blog]
* --------------------------------------------------------------------------- */
if( ! function_exists( 'sc_blog' ) )
{
function sc_blog( $attr, $content = null )
{
extract(shortcode_atts(array(
'count' => 2,
'category' => '',
'category_multi' => '',
'tagID'             => '',
'tagName'           => '',
'exclude_id' => '',
'style' => 'classic',
'columns' => 3,
'greyscale' => '',
'more' => '',
'filters' => '',
'pagination' => '',
'load_more' => '',
), $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;
// tags
if( $tagID ){
  $args['tag_id'] = trim($tagID);
  }
  
if( $tagName ){
  $args['tag'] = trim($tagName);
  }
  
if using FORMAT here the textsize grows incredible so I cannot post the post!

Change color of subheader

$
0
0
Hi,
i can't find an option to change the color of the subheader?

Meta description get my alt img

$
0
0
Hi,

I use betheme and yoast seo on many own website and the last that i build have a several problem, I explain :

In source code my meta description on my home are good but when i find my page in google she is totally different. (see next pictures)

image
image
I have found that google take my alt img on meta description, i dont know why... i have folow the seo tutorial from betheme to transform the muffin builder content in lisible seo.

Can you help me to solve this pls ?

Best regards


Change text color of search bar

$
0
0
This code not working:
#Top_bar .search_wrapper input[type="text"] { color: #ffffff !important; }

Text next to button, 2 menu colors

$
0
0
Hi!

I need help with 2 very important things, one is about a text next to a button, and another about 2 menus with different colors.
I cannot however share the link to the site, but I need you to help me anyway, or at least give me hints

Question 1.) -------------------- 
 
 At the moment my button and text looks like this:
image

code: 

<p style="font-size: px;">[button title="LÄS MER" link="" target="_blank" align="" icon="" icon_position="" color="#000" font_color="#000" size="4" full_width="" class="" download="" rel="" onclick=""] <span style="font-size: 30px; line-height: 34px ; font-weight: 700;">SEK 1395</span></p>



How do I get it to look like this?
image
As you can see I want the next to be centered in regards to the button, so that the texts appear to be on the same kinda line.

Question 2.) -------------------- 

This one is VERY VERY important!
At the moment I have a "Transparent Menu" in betheme options, and my menu link color, uploaded png logo, etc are all in white.

Now, I have some other pages, but for those particular pages I need the menu colors to be all in black

So it is not  only "custom menus", but I need them in another color, so that on those pages black overrides the white, and I need a logo swap as well, so that the current white png logo is changed to a black png logo.

image

In other words, I want to be able to have:
Page 1 -- White color menu and White png logo
Another page -- Black color menu and an Black png logo



How can I achieve this? This is very important.
Thanks!



Remove "On Sale" Badge

$
0
0
Hi i am using a plugin to manage badges so how can i remove the badges used by theme for woocommerce?

Line breaks not showing

Change blog text background

$
0
0
Hi I'd like to change the background colour for the text for all of the blog posts posted on my website. 

This is specific to blog posts.

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

$
0
0
as much as i like the dropdown TAGLIST in the header of the post I found that the reader is not getting it and finding it. So I want the usual style of TAG-LIST of the post underneath the posts content

 

/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>';
}
}

Header tranparency

$
0
0
Hello I recently made my header transparent by clicking the option in Theme options > Global  but now I am wondering is it possible to make the header semi transparent with the color white? I want to do this so that it can be easier to read for the users like a 50% opacity I have tired many things but nothing is working! Any help would be appreciated!
Thanks
URL: Jmpools.net

Header issues

$
0
0
Hi,

Please can you advise as to how I can adjust logo size in the header?

Secondly, how can I amend the height of the sticky header?

Finally - how can I add a link to the footer?

Thanks!
Viewing all 93029 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>