Viewing 30 results - 3,811 through 3,840 (of 11,211 total)
  • Author
    Search Results
  • #1061627

    Hi,

    Thank you for writing to us.

    Please refer to the documentation to align the scroll to top button.

    Best regards,
    Vinay

    #1061507

    Hey HagenWittig,

    Please create a button element enable custom CSS class name support from Enfold > Layout Builder > Developer Options

    Add a custom CSS class name “btn-stick” to the button.

    Ad lastly add this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    /* CSS - */
    
    .btn-sticky {
    	position: fixed;
    	transform: rotate(-90deg);
    	right: 0;
    	top:300px;
    	z-index: 999999 !important;
    }

    For more info please refer to the documentation.

    Best regards,
    Vinay

    • This reply was modified 7 years, 1 month ago by Vinay.
    #1061447
    /*** custom social bookmarks widget  ****/
    function social_bookmarks_register_widget() {
    register_widget( 'add_social_bookmarks' );
    }
    add_action( 'widgets_init', 'social_bookmarks_register_widget' );
    
    class add_social_bookmarks extends WP_Widget {
    public function __construct() {
      $widget_ops = array(
        'classname' => 'socialbookmarks-widget', 
        'description' => __('A widget that displays the social bookmarks', 'avia_framework') 
        );
      parent::__construct( 'add_social_bookmarks', THEMENAME.' Social Bookmarks', $widget_ops );
    }
    
    public function widget( $args, $instance ) {
      $title = apply_filters( 'widget_title', $instance['title'] );
      echo $args['before_widget'];
      //if title is present
      if ( ! empty( $title ) )
      echo $args['before_title'] . $title . $args['after_title'];
      //output
      echo $before_widget;
      $social_args = array('outside'=>'ul', 'inside'=>'li', 'append' => '');
      echo avia_social_media_icons($social_args, false);
      echo $after_widget;
    }
    
    public function form( $instance ) {
      if ( isset( $instance[ 'title' ] ) )
      $title = $instance[ 'title' ];
      else
      $title = __( 'Social Bookmarks', 'avia_framework' );
      ?>
      <p>
      <label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' ); ?></label>
      <input class="widefat" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>" />
      </p>
      <?php
    }
    
    public function update( $new_instance, $old_instance ) {
      $instance = array();
      $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? strip_tags( $new_instance['title'] ) : '';
      return $instance;
    }
    }

    for quick css like above:

    #footer .social_bookmarks {
        float: left;
        margin: 15px 0 0 ;
        position: relative;
    }
    
    #footer .social_bookmarks li {
         float: left;
        clear: right !important;
        margin-right: 10px;
        border: 1px solid #999;
    }

    You will then have your own widget for it and can drag it in a widget-area of your choice
    All social Buttons you will define on Enfold Options will be there

    stratix
    Participant

    Hello. A year or two ago (don’t recall exactly when), you guys helped me create a custom header widget area for a credit union bank client of mine requiring a customer log-in at the top of their site above the nav bar. The customization only required a small snippet of code added to the end of the functions.php file, which then allowed me to add content to this area via the widgets dashboard.
    This is the code we added:

    /*
     *  Custom header widget for CAPE log-in form
     */
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    I’m currently using a Custom HTML widget to display the client logo on the left and form on the right with column shortcodes. This has worked great to this point, but now the bank is changing systems and has provided me with a new form code snippet to replace the one that’s currently been in that space. The issue is that now the new form’s formatting gets thrown off when placed inside the widget. The “Login ID” text and “Submit” button get pushed down in the vertical space of the form’s table. I’m thinking this is probably a simple CSS fix, but I’m currently unable to sort it out.

    I tested the form code on a regular page and it formats just fine (all elements align nicely). But when placed in the header widget, the formatting breaks. I’m hoping there’s an easy CSS fix for this and you might be able to help me out. They need this new form to go live tomorrow, so I’m hopeful for a quick resolution. I’ve provided links to the staging site in the private content section below, along with access credentials in case you need to check that.

    Thank you so much,
    Chris

    #1061006

    In reply to: Enfold 2017

    hello I do not know how I can explain it in more detail :-) I would like this feature which is included in “Maisaonary” also in “Maisonary Gallery”.

    It’s this button: Perfect manual Masonry: You can manually control the height and width of the entries by adding tags like “landscape” or “portrait” when creating an entry. Elements without the use of such tags receive a fixed standard size, elements with both tags are displayed extra large.

    But I have the impression that this does not work with Enfold

    Best regards Stefan

    Hey xfacta,

    Please use the below CSS in Enfold > General Styling > Quick CSS.

     /* Easyslider button */
    @media only screen and (max-width: 767px) {
    .responsive #top .av_slideshow_full .avia-slideshow-button {
    	/*Your style here */
    	background: gold !important;
    }    
    }

    For more info please check this link.

    Best regards,
    Vinay

    #1060888

    i did it here with a sidebar:

    https://webers-testseite.de/buttons/

    and we have to change the overflow rule ( the #top has to be present in the rule) to ( in this case only for that pages):

    .responsive body#top.page-id-29934,
    .responsive body#top.page-id-33933 {
        overflow-x: visible;
    }
    
    .page-id-29934 #wrap_all,
    .page-id-33933 #wrap_all {
        overflow: visible;
    }

    The sticky goes to the sidebar itself – but to find the right parent is a bit different – on that case:

    .page-id-29934 .container_wrap.sidebar_right {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
    }
    
    .page-id-29934 .sidebar  {
      position: -webkit-sticky;
      position: sticky;
      bottom: 0;
      align-self: flex-end;
      width: 25% !important
    }

    The only thing – flex does change something to width definition – the sticky element needs the width info of enfold basic setting – in my case 25%

    #1060847

    Hey hale127,

    To edit the menu links please check the menu docs.

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Best regards,
    Vinay

    #1060693

    Hi,

    I checked your site on Windows Chrome and the links are work fine on my end.

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Best regards,
    Vinay

    #1060685

    Hi,

    You can reduce the logo size by adding custom CSS. Please refer to the logo docs. Please change the media Query max-width to 990px from 767px.

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Best regards,
    Vinay

    vidordesigns
    Participant

    This issue was resolved with a hack, however it’s back: The “LifterLMS” plugin works with every other theme except Enfold

    Here is a reply from Developers, I did all they asked yet there was no solution found.

    Please do let me know if access is needed

    —–From Dev ————–

    Hi there,

    I checked this and for some reason the javascript file that powers the quizzes is not loaded on the site at all. I’m not sure why that is unless something’s deliberately dequeued the quiz js since there are no 404s that I can see. The file is also present where it is expected: https://ver2.wpatrainingdev.com/wp-content/plugins/lifterlms/assets/js/llms-quiz.min.js

    Without this script, the quiz button does nothing except reload the page which is what you’re experiencing right now.

    Could you or your developer check if there’s something on the site that could be causing this? It could be one of the plugins that’s not configured correctly. You could use a plugin like this one to find the culprit: https://wordpress.org/plugins/plugin-detective/

    If there’s something that’s obviously different between this site and the main one, that would be the place to start.

    I hope this helps. Do let me know if you need more information or help with this.

    Best

    I saw a solution on another thread and it worked.

    Go to Enfold theme panel — Update
    There should still be the update button for the theme Delete the Envato private token and click the revalidate or remove button The update button should still be there (but the token field is empty now) click update theme You should get the message Theme update successful but should still have the 4.5.2 Now go back to theme panel — Update. Enter your private token again and hit validate After that check for theme updates manually till the update button shows up Click it and update…… hopefully now with no “download failed. Forbidden”

    #1060529
    Hansanders
    Participant

    Hello there,

    We’re having some jQuery issues on our site. We’re using the plugin ‘WooCommerce Multivendor Marketplace’ with your Enfold theme. This plugin lets vendors add their own products, with images. However when clicking on the upload button we’ll get the following error: Click here

    Already disabled all ‘unnecessary’ plugins > no luck. Switched to default WP theme Twenty Seventeen (or any other default WP theme) > no issue there, so fixed.

    Any ideas on what might be going wrong here?

    Thanks!

    • This topic was modified 7 years, 1 month ago by Hansanders.
    #1060411

    Hey revelbranding,

    Thank you for using Enfold.

    You can use this css code to change the color of those buttons.

    #top .main_color .avia_cart_buttons .button.add_to_cart_button {
        color: red;
    }
    
    #top .main_color .avia_cart_buttons .button.show_details_button {
        color: blue;
    }

    You can add a hover state using the same set of selectors.

    // https://www.w3schools.com/cssref/sel_hover.asp

    Best regards,
    Ismael

    #1060358

    Hi there maybe another “solution”

    Go to Enfold theme panel –> Update
    There should still be the update button for the theme
    Delete the Envato private token and click the revalidate or remove button
    The update button should still be there (but the token field is empty now) click update theme
    You should get the message Theme update successful but should still have the 4.5.2
    Now go back to theme panel –> Update
    Enter your private token again and hit validate
    After that check for theme updates manually till the update button shows up
    Click it and update…… hopefully now with no “download failed. Forbidden”

    Regards
    Alex

    #1060073
    Angelo
    Participant

    Hi Guys,

    I am using the google recaptcha on my contact forms. I can select for example the carrs and all that and if i click onvnext it says that the recaptcha is correct, but the send button is no where found. So i stil can not send my forms.

    Is this a bug or something i did wrong?

    Hope to hear from you.

    Hi,

    Thank you for writing to us.

    Please follow the steps correctly and it will work for you. Both the links are from the same page but each link is from a different section.

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Best regards,
    Vinay

    #1059750

    In reply to: Color of the favicon

    Hi,

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    If you still have an issue please post the admin credentials so we can take a closer look at this issue.

    Best regards,
    Vinay

    #1059731

    Sure thing!
    So, whats happening is that in woocommerce they say you can easily do whats called “template” overrides.

    I customized a THANKYOU page for my shopping site. it was just a simple addition of a button that takes information to another site.
    Ever since ive updated wordpress, enfold, and woocommerce, ive noticed that the overrides supposed arent working with enfold when it was working perfectly fine earlier in the year. (few weeks ago? give or take)

    im not sure what im doing wrong and im missing each time I take a swing at this.

    Any help or ideas you can provide would be great.

    Hey Thanks Guenni.

    I use the enfold (not the child) but the construction theme. And then the general colors scheme is blue/yellow.

    I managed to change a yellow part of the website, by changing the content section.
    and then selected a different color as background color.
    That worked fine.
    But now i have to also change the other parts of yellow.
    Like the buttons in the slider.

    I thought i could change the colors all in ones with the color scheme.

    Thanks in advance for the help.

    #1059685

    In reply to: Item count

    Hey,

    Yes, we have hardcoded it however you can customize it. Here is an example thread – https://kriesi.at/support/topic/number-in-the-bubble-above-the-jobs-menu-button-on-the-enfold-site/ where user wanted to display the count of portfolio items :)

    I hope that helps! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

    #1059662
    Jan_FtFA
    Participant

    Hello,

    If I set the maintenance mode in the Enfold menu and select a dedicated maintenance page this results in two errors:
    – maintenance page is not loaded
    – other pages are shown but incorrectly. The white divs (containing the buttons) are thrown off there position.

    Please advice on what to do.

    Best regards,

    Jan

    #1059647
    vissr
    Participant

    I’m working on a website that has not been updated in a while. Since the EOL of PHP 5.6, I was forced to update everything since a lot of things didn’t work very well at PHP 7+.
    After updating WordPress and Enfold to the latest version, I can’t seem to get the mobile menu working anymore. Weird enough, the text “Menu” is visible in desktop sizes, and that button gives some sort of half menu. In mobile mode, this menu nor the icon is visible. Link attached.

    I have tried the following things to resolve this issue:
    – Disabled the child theme that is installed
    – Disabled all plugins
    – Removed all Quick CSS styles that were configured
    – Applied CSS code that I found in similar topics
    – Removed cache after all actions above

    Thanks in advance for any kind of help to guide me to the answer for this issue.

    #1059608

    Hey Brautgalerie,

    Thank you for writing to us.

    It is not possible to align the content in different directions. You can align all the content in one direction only.

    For example, both the button and heading can be aligned :
    Top, center
    Bottom, center
    Left
    Right

    For more info please refer to the color section docs.

    Best regards,
    Vinay

    #1059562

    Hi,

    I’m not sure if there is something like cache-blocker. You can perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    To remove the footer info please check the footer docs.

    Best regards,
    Vinay

    #1059525

    Hey angereichert,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    CSS Snippet:

    
    /* CSS - */
    
    
    #top main.content {
        padding-top:0;
    }
    
    
    

    You may not see the changes until the cached files are cleared in your browser.

    Please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Best regards,
    Vinay

    #1059498

    Hey Henk,

    I checked your site and the site looks good on my end. You may not see the changes until the cached files are cleared in your browser.

    In future, if you face the same issue please perform the below steps to clear the browser cache:

    1. Disable “merging and compression” for CSS and JS files from Enfold > Performance.
    2. If a caching plugin is installed check the plugin settings and clear the cache and deactivate the plugins for testing purpose.
    3. Hard refresh by pressing Ctrl + Shift + F5 on your browser or press the F12 key to open chrome dev tools and right click on the refresh button and select “Empty Cache and Hard Reload”.

    Best regards,
    Vinay

    #1059474

    Hello Yigit, in the past I bought flagship but now when I check Enfold 4.5 in themeforest I can’t see a download button but I see a button to buy it. Am I not entitled to download Enfold 4.5 since I paid for Flagship theme?

    Regards,

    #1059422
    olppa
    Participant

    Hi,

    I’m using Enfold 4.5.2 and Toolset Types (3.2.4) and Toolset Forms (2.2.1.1).
    Wordpress version 5.0.3

    I have a Toolset Forms form that is used to create and edit a custom post type (cpt) Blogikirjoitukset (i.e. Blog posts).
    In the Form settings I have chosen that the Add media button is visible so users can add images to the post body.

    But the Add media button is not working.
    It won’t open the upload / choose media window.

    I deactivated all other plugins and tried adding this to wp-config:
    define(‘CONCATENATE_SCRIPTS’, false );
    I tested the form with Twentynineteen theme and it worked.
    So Enfold is messing with the wysiwyg (Tiny mce) somehow and preventing from uploading images through the form.

    Can Kriesi’s developers take a look at this?

    On a side note.
    It would be awesome if Enfold and Toolset would be compatible.
    This has been requested many times before but nothing has happened.
    Enfold is otherwise a great theme and it would be a shame to have to switch to another theme.
    Even a toolset Widget or Toolset page template would be great.

    Otherwise keep up the good work!

    #1059119
    m1sturny
    Participant

    Hi,
    I am trying very basically to just activate google maps into the enfold theme. But on the google services page within the enfold menu when entering the freshly generated API key it says “no connection can be made”. then they ask me to :

    Troubleshooting:
    Check if you typed the key correctly.
    If you use the restriction setting on Google try to remove that, wait a few minutes for google to apply your changes and then check again if the key works here. If it does, you probably have a syntax error in your referrer url
    If none of this helps: deactivate all plugins and then check if the API works by using the button above. If thats the case then one of your plugins is interfering.

    But all of this does not work.

    So where is the problem? I just want to have google maps. So no rocket science normally… I am not the techni girl but managed fine until here and I love the intuitiveness of the Enfold theme. But here I surrender…
    Thanks for your help, Maren

    • This topic was modified 7 years, 1 month ago by m1sturny.
Viewing 30 results - 3,811 through 3,840 (of 11,211 total)