Viewing 30 results - 231,511 through 231,540 (of 244,621 total)
  • Author
    Search Results
  • #208988
    jklillibridge
    Participant

    h

    Hi! I am incorporating an intranet plugin into the Enfold theme. It’s working out great so far but there is one little weird thing happening with the search buttons. Any idea on how to fix this?

    #208983

    Add an admin list-filter for portfolio entries…

    function restrict_portfolio_listing() {
    global $typenow;
    $post_type = ‘portfolio’; // change HERE
    $taxonomy = ‘portfolio_entries’; // change HERE
    if ($typenow == $post_type) {
    $selected = isset($_GET[$taxonomy]) ? $_GET[$taxonomy] : ”;
    $info_taxonomy = get_taxonomy($taxonomy);
    wp_dropdown_categories(array(
    ‘show_option_all’ => __(“Show All {$info_taxonomy->label}”),
    ‘taxonomy’ => $taxonomy,
    ‘name’ => $taxonomy,
    ‘orderby’ => ‘name’,
    ‘selected’ => $selected,
    ‘show_count’ => true,
    ‘hide_empty’ => true,
    ));
    };
    }

    add_action(‘restrict_manage_posts’, ‘restrict_portfolio_listing’);

    function convert_id_to_term_in_query($query) {
    global $pagenow;
    $post_type = ‘portfolio’; // change HERE
    $taxonomy = ‘portfolio_entries’; // change HERE
    $q_vars = &$query->query_vars;
    if ($pagenow == ‘edit.php’ && isset($q_vars[‘post_type’]) && $q_vars[‘post_type’] == $post_type && isset($q_vars[$taxonomy]) && is_numeric($q_vars[$taxonomy]) && $q_vars[$taxonomy] != 0) {
    $term = get_term_by(‘id’, $q_vars[$taxonomy], $taxonomy);
    $q_vars[$taxonomy] = $term->slug;
    }
    }

    add_filter(‘parse_query’, ‘convert_id_to_term_in_query’);

    #208978

    Hey Ben!

    Yes, we already change the slug translation method. A tutorial can be found here: http://kriesi.at/documentation/enfold/translating-the-portfolio-slug-with-wpml/

    Cheers!
    Peter

    charlies23
    Participant

    Hi Kriesi Team!

    I am working on a very customised eiditon of enfold and I got stuck a bit with customising the menu.

    This is the site I am working on :
    http://dev.irecruitexpo.com/

    I want 2 changes to be made on the menu.

    1.) I want to make the top level main menuitems to stay hoovered unti another main menu item is hoovered. I mean if I hoover some of the submenu items opening from the main item, the main item background should stay blue as long as I keep hoovering the submenu or until I hoover another main menu item.

    2.) I want to change the direction of how 2nd level submenu items open. Instead of opening to the left I want them to open to the right.

    I appreciate any tips or help what you can provide. I am loking forward to your reply!

    Regards,
    Tom

    #208974

    Topic: java script error

    in forum Enfold
    erikwillems
    Participant

    While trying to get to work with Enfold and WPML. I’m running into quite some problems.

    At first I thought the problem was in WPML but now the WPML supports starts pointing at kriesi:

    http://wpml.org/forums/topic/404-after-switching-languages/page/2/#post-320149

    My problem: I bought a theme (enfold) and a Plugin (WPML) which both claim to be compatible with each other and it just does not work.

    I would realy apreciate some help.

    The latest problem is the javoscrip error : jvascrip error

    #208967

    Hey David!

    Please use this on your custom.css or Quick CSS to adjust the height of the menu list:

    .main_menu ul:first-child > li a {
    height: 40px !important;
    line-height: 40px !important;
    }

    Add this to move the main menu position:

    #avia-menu {
    position: relative;
    top: 30px;
    }

    Cheers!
    Ismael

    #208961

    Hey!

    Are you using WPML? Please use this plugin: http://wordpress.org/plugins/codestyling-localization/

    Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to search for all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Regards,
    Ismael

    #208955

    Hey!

    Glad it is working now. :)

    Cheers!
    Ismael

    #208949
    zerozendesign
    Participant

    Top of the morning guys,

    Wondering how I might go about stylizing my custom menu button that I started at http://codelessme.com/paidfairly to look like the attached image.

    upload button

    Thanks in advance!
    David

    Hi Ismael,

    1) I downloaded and installed the update ( 2014 January 09 – Version 2.4.5) before sending you my post…

    2) I put my code in the custom.css. The font that I want to use is Bariol regular font.

    The code :

    /* Have fun adding your style here :) - PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */
    
    /* General Custom CSS */
    
    /*
    Desktop Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the desktop view of your site */
    
    @media only screen and (min-width: 768px) {
    
    @font-face{
    font-family:bariol_regular;
    src:url('/wordpress/wp-content/themes/WPenfold/font/bariol_regular.ttf') format ("truetype");
    }
    
    }
    
    /*
    Mobile Styles
    ================================================== */
    /* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */
    
    @media only screen and (max-width: 767px) {
     
    @font-face{
    font-family:bariol_regular;
    src:url('/wordpress/wp-content/themes/WPenfold/font/bariol_regular.ttf') format ("truetype");
    } 
     
    }

    Kind regards,

    Thomas

    #208929

    I’m having same problem. Installed Enfold new, using child theme and slider just vanished and will not display on front end. I duplicated the back end slider, renamed it and still no luck.
    Changed themes – input my api and username again, refreshed cache and still no luck.

    Any suggestions?

    Lucinda

    Hi!

    1.) It should be there by default. Try to download the theme again then update your installation.

    2.) What is the font you’re trying to use? Did you create a font folder inside the enfold theme? Please post the @font-face code that you created.

    Cheers!
    Ismael

    #208907

    Hi Devin,
    I found the problem. It was with the Layer Slider WP. The previous theme was also using the plugin, so it caused a conflict. I got rid of my older theme and the plugins for it and the installation worked.
    Thank you for the quick response.
    Lyse

    #208905

    + 1 for Right Sidebar on woocom single product pages also.

    I described the need here https://kriesi.at/support/topic/get-a-right-sidebar-in-woocommerce-single-product/ but @Zerozendesign did it weel in just a few words, as quoted by @ttem just above :

    The addition of a right sidebar option on a woocommerce page. For visitor usability, this seems like it would be a no brainer. The ability to add the shopping cart widget into the right sidebar so visitors could view their cart as they are shopping would be an ideal scenario.

    Thank you very much.

    #208903

    My site can be found at http://bit.ly/1fqPkFc.
    I have used the snippet below on other themes and it works great. It adds a pop-up Pin It button to all images on hover, but I’m not sure where or how to add it to Enfold. I’d like to have it function on all pages.

    I could not add the Insert-html-snippet plugin mentioned above because it is out of date with the current WP version, so I tried one called Code Snippets which did nothing. I can’t tell where it is adding the code. I need it to go after the opening tag <body>

    <script type=”text/javascript” src=”//assets.pinterest.com/js/pinit.js”
    data-pin-hover=”true”
    ></script>

    #208898
    • Small icon list
    • Process builder with icons and text
    • Hover styles for icon boxes (change icon color/size/etc when the mouse enters the box)
    • The ability to use an image instead of a font icon in icon boxes would be nice.
    • Event calendar integration (like in Incarnation)
    • And for documentation, I’d really appreciate a ‘how to adjust CSS code’ guide – i.e. so if I find a code on the forum which does what I want, I can see how to make it work on the appropriate pages for my site without needing someone to respond to my support ticket. (If something like this exists already, please let me know!)
    #208894
    Vermishelle
    Participant

    Hello, I need to add http://vk.com (social media site) button to fixed header among other social icons.

    There is no such an option for now in Enfold admin panel. I can find an icon I need on http://fontello.com/ (“vkontakte” keyword), but what’s next? It would be brilliant if I could combine some custom frontello icon with some custom social network link…

    • This topic was modified 12 years, 3 months ago by Vermishelle.
    #208891

    Josue, yes I tried using a Text element, but 2 things:
    First the link is not seen, and all you see on the website is the text
    And secondly, Yoast cannot see the code either.

    Devin,
    Here is the code Im trying to use:
    http://video.imaginefs.com/medias/jwtmn2t7w3?embedType=iframe&videoWidth=640

    I looked at using shortcodes, but the page is relatively complicated and it didnt seem that easy to re-create each page that way.

    If I cant use these codes in some way within Enfold, we may need to move themes, as we are not getting the benefit of any Video SEO right now.

    Any help, gratefully received.

    #208890
    BenWorx
    Participant

    Hello Dude,

    In this topic: https://kriesi.at/support/topic/problem-with-wpml-templatebuilder-and-permalinkstructure-since-3-7-1-update/
    we talked about the fact that Propulsion/Enfold together with using WPML sometimes changes the permalink structure…

    You said that you’ll contact Kriesi for a solution for that specific problem..

    Right now I wish to buy Enfold for a new client and we’ll be needing WPML in the future. THere is also another project coming up where i’ll be needing WPML..

    Pls let me know asap if this problem has been fixed and if I can safely buy this theme and not be confronted with the WPML problem in a later stage..

    Thanx!

    Ben

    #208884

    In reply to: Enfold Child Theme

    Hey!

    Sure – you can use following css code

    
    .page-id-15  #av_section_1 .post-entry{
    background: rgba(255,255,255,0.5);
    }
    

    The last value must be between 0 and 1 and determines the opacity.

    Cheers!
    Peter

    #208878
    Ed
    Participant

    I have successfully installed the Compact WP Player Plug in with the idea of placing a player localed to the right of the social media icons on my page built on the enfold theme. Can you please help me customize this?

    The code I need to call my audio file is

    [sc_embed_player fileurl=”http://myblog./wp-content/uploads/2014/01/music.mp3&#8243; volume=”10″ loops=”true”] but where do I place it?

    #208874

    Hi hellovlad_!

    1) The breadcrumb doesn’t take care of the menu items and the menu order does not affect the breadcrumb hierarchy. See: https://kriesi.at/support/topic/breadcrumb-navigation-2/

    2) I recommend to rename the “Portfolio 3 Column Ajax” page to “Portfolio” – then the structure should be “You are here: Home / Portfolio / Portfolio Item Name.”. If you want to remove the “Home” link insert following code at the bottom of functions.php

    
    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
    $args['show_home'] = false;
    return $args;
    }
    

    Then the breadcrumb should just show the pages (“You’re here: Portfolio / Portfolio Item Name”).

    Best regards,
    Peter

    #208873
    David Verburg
    Participant

    Hi there,

    I have installed the multi language plug in for Enfold and was wondering if I can use different url’s for one orderbutton. Our shopping part of the site has been tailor made in different languages. It uses /country/ to distinct which language to use. In the front end (Enfold) we will use the multi language plug. The URL for ordering in our shopping system needs to be different though: http://www.redlinegolf.nl/ENG/verpakkingen/v_12/b_2 for english and http://www.redlinegolf.nl/NL/verpakkingen/v_12/b_2 for Dutch. When an English customer clicks the order button a different URL needs to be used. Will that be possible? If so, how?

    Thanks for your help.

    Regards,
    David Verburg

    Hi Monsoon!

    Please try to insert following code at the bottom of function.php. You can use DESC if you need a descending order

    
    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'date';
    $query['order'] = 'ASC';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
    

    Regards,
    Peter

    #208858

    In reply to: Font Size of Comments

    This reply has been marked as private.
    #208846

    It’d be really great if we have have a login/logout and a user profile management function added to the theme. thanks.

    #208836

    In reply to: Enfold Child Theme

    This reply has been marked as private.
    #208832

    Another quick and accurate response from support… you guys rock! :)

    Thanks,

    Ryan

    #208816

    Hey!

    I tested your website with w3cvalidator: http://validator.w3.org/check?uri=http%3A%2F%2Fxdnet.biz%2F%3Fs%3DTest&charset=%28detect+automatically%29&doctype=Inline&group=0 and I guess one html syntax error might cause the issue:

    
    Line 283, Column 194: No p element in scope but a p end tag seen.
    …iz/wp-content/uploads/LinkedInButton.png" alt="Join us on LinkedIn!" /></a></p>
    

    You can also remove the scroll bar with css code – insert

    
    body.search {
    overflow-x: hidden;
    }
    

    into the quick css field.

    Cheers!
    Peter

    #208807

    Topic: Retina 2x

    in forum Enfold
    webpress
    Participant

    Hi,

    Is it possible to use Enfold and be “retina friendly”? Can we at least have the logo in 2x?

Viewing 30 results - 231,511 through 231,540 (of 244,621 total)