Viewing 30 results - 1,561 through 1,590 (of 1,622 total)
  • Author
    Search Results
  • #193512
    sitesme
    Participant

    Hi,

    I am using FormidablePRO for my forms which I really need to keep using it.
    I was using Choices theme and you gave me the following code to fix some issues with the CSS:

    /* fix the formidable problem */
    .flex_column .frm_form_fields br{display:none;}
    
    .ui-datepicker-month, .ui-datepicker-year{
        min-width: 0 !important;
        padding: 0 !important;
    } 

    I found the following code which solved me the breaklines:

    #top .frm_forms label {
    display: inline;
    }

    But I still need more help to make this: http://d.pr/i/iwc5/5hTP676R to look like http://d.pr/i/10NO/3MwjJGUN

    They are both the same form. The first on Enfold, the second on Choices with custom CSS.

    I can send you the URL of the website in PM or by email.

    Thank you.

    #193289

    Peter,
    Thank you so much for the code. It worked great. I edited the main file in the /enfold theme and not my child theme.
    Can you put the masonry_entries.php page in the child theme and the site will still work? This will help with updating. I reckon I could just try it and see, but I seem to recall that I tried this with another core php file and it didn’t work. Only headers, footers, function.php seem to be recognized. I am not a newbie coder, but I am pretty new to WordPress. Picking it up pretty quickly though.

    On another note, you folks should really look at the lightbox script I’m using. I’ve used it for years and know the developer pretty well. It’s far superior to the lightbox you folks are using. There are over a hundred option settings built inside and the API has built in functions that help with many things like ajax refreshes and hosting up dynamic stuff inside pages. The support is fantastic and detailed. The only other site online that I’ve seen that has similar support is yours. FYI, I have no vested interest in the script.

    For example, with your code, I’m now yanking the captions from the alt attribute in masonry, while serving up the title attribute with the mouseover option. So I can have a short caption on the thumb with a more detailed description in the lightbox window. A distinct advantage for using the alt attribute is that you don’t have the title displaying on mouseover which duplicates the mouseover effect built into masonry. It also avoids the title mouseovers built into most browsers and allows you to use javascript tooltips if you want. And, of course your alt descriptions can be very detailed which will help SEO.

    I will probably look into your backend code some more in avia.js and in some of the php files to open up more flexibility by coding in a custom data- attribute that works with the lightbox script I use. By doing so, it will allow the insertion of all sorts of lightbox display options in the headers, footers and outside the lightbox as well — HTML, videos, dynamic content, you name it. If you can code it, it can be fed to the lightbox through the data- attribute that is specific to this script. I sure wished you had a customizable data- attribute built into the backend of the wordpress manager for < a > links. I will probably have to code it myself. I can probably do it, I just don’t know where to look for all the relevant code in all your php files. It could be a lengthy trial and error process. I chatted with the developer of your third party slider that you use and he likes the idea of a configurable data- attribute by the customer. He indicated he was going to look at it in a future version release. There are numerous benefits to having this if you are a true coder.

    Anyway, these were some of the reasons I was asking for the alt attribute. You probably assumed most of the reason was for SEO.

    On a separate note, where would I find the code that renders the alt and title form fields on the backend of WordPress where you update and modify a masonry element? What file is that in? I have found the code that inserts the lightbox attributes inside of avia.js.

    Thanks again for your help. Your support in this forum is excellent. And I don’t say that lightly. I mean it.

    Cheers,
    Don

    #191325

    Hey!

    WordPress will parse your line breaks and turn them into break tags. So working with shortcodes tends to be a bit of a trick unless you only work in the text tab or disable wpautop( http://codex.wordpress.org/Function_Reference/wpautop).

    One thing you may want to try, though it may not be suitable for clients, is using this function:

    
    /*-----------------------------------------------------------------------------------*/
    /* Instead of remove_filter('the_content', 'wpautop');
    /* Removes wpautop from specified pages with a custom field:
    /* Name: autoformat Value: false
    /*-----------------------------------------------------------------------------------*/
    
    function st_remove_wpautop($content) {
        global $post;
        // Get the keys and values of the custom fields:
        $rmwpautop = get_post_meta($post->ID, 'autoformat', true);
        // Remove the filter
        remove_filter('the_content', 'wpautop');
        if ('false' === $rmwpautop) {
        } else {
        add_filter('the_content', 'wpautop');
        }
        return $content;
    }
    // Hook into the Plugin API
    add_filter('the_content', 'st_remove_wpautop', 9);
    

    then when you add the custom field with the name wpautop and give it a value of false it will disable wpautop on that page specifically.

    Otherwise using the advanced layout editor will allow you to add in the layouts without worrying about it.

    Regards,
    Devin

    #190748
    Perenso
    Participant

    Hi team,

    As per title, how can I remove/hide the image title for images added using the Easy Slider? I’ve tried installing a few plugins but none of them actually do anything.

    Is there something I can add to the custom.css to fix this?

    Here’s a snippet of code from the Easy Slider.
    < img itemprop=”contentURL” alt=”” title=”fieldsales-ipad” src=”http://xxxxxxxxxxxxxxxxxxx/wp-content/uploads/2013/11/black-ipad-splash-screen.png&#8221; />

    • This topic was modified 12 years, 1 month ago by Yigit.
    #190003

    Hi!

    WordPress will not import all settings of the “Mega Menu” which we used on the demo page simply because the import tool can’t handle all data fields. You need to configure the menu settings manually (Appearance > Menus).

    Cheers!
    Peter

    #188162
    domvitz
    Participant

    Hi,

    Is it possible for the blog post grid to display further information below the featured image?

    I am currently using a plugin that I had created but the developer has disappeared and I can’t make any changes. I have seen that your enfold theme does everything that I would like it to. I would still use the plugin for the vehicles as it works just find but use the theme to display them. On a page using the blog posts feature and choosing the “display entries from a custom taxonomy” option, I would like it to show certain custom fields below the image and a button to take you to the page.

    This is an example of what I am talking about. http://development.executivecontracts.co.uk/test-home-display/ but I would like it to display the information on this link: http://development.executivecontracts.co.uk

    Make,
    Model
    Term
    Mileage
    Options
    Price
    Enquiry button.

    I do not need it to show an excerpt of the post. Just the list of items detailed above.

    Can this be done and if so would you be able to let me know how?

    Many thanks

    Dom

    • This topic was modified 12 years, 2 months ago by domvitz.

    Thanks for the input Ismael.

    I tried Contact form 7 which is really great plugin, but it has not the “conditional logic” feature, which I need.

    If you manage to put this feature in the Enfold theme future update (contact form shortcode), would be brilliant. Cos in this case we wont need to install additional plugins to create forms and bother with avoiding customizations on CSS due to conflicts.

    For the time being I will try what you suggest.

    Thanks again!

    George

    #184021
    ttem
    Participant

    Team Kriesi has done a great job building the breadcrumb script, I read about the origins of this way back in 2008.

    There are situations where it would be desirable to be able to designate a parent breadcrumb to a page which may not have any hierarchy. Based on previous posts regarding breadcrumbs I think this could be useful for many Kriesi theme owners.

    I have figured out the process to do this, however I have not found the exact location to set the parent post ID in enfold/framework/php/class-breadcrumb.php

    I’m using advance custom fields to optionally assign a parent breadcrumb post ID – ‘parent_breadcrumb_postid’

    This field can then be used to assign a parent breadcrumb in enfold/framework/php/class-breadcrumb.php

    <?php
     
    if(get_field('parent_breadcrumb_postid'))
    {
    	$post_id = get_field('parent_breadcrumb_postid');
    }
     
    ?>

    Should the above code for retrieving the parent_breadcrumb_postid (if assigned) be placed in the class-breadcrumb.php file before the function starting line 521 function avia_breadcrumbs_get_parents( $post_id = ”, $path = ” )

    Thank you Team Kriesi for providing outstanding support for the best wordpress theme … Enfold

    #183203

    Hi kaMai!

    You replace these lines with the get_post_meta for custom fields:

    //on single page replace the link with a fullscreen image
            if(is_singular())
            {
                $link = avia_image_by_id(get_post_thumbnail_id(), 'large', 'url');
            }
    
            //echo preview image
            if(strpos($blog_style, 'big') !== false)
            {
                if($slider) $slider = '<a href="'.$link.'">'.$slider.'</a>';
                if($slider) echo '<div class="big-preview '.$blog_style.'">'.$slider.'</div>';
            }

    Cheers!
    Ismael

    #182988

    Topic: gallery rollover bug

    in forum Enfold
    yes2themes
    Participant

    Having an issue with a rollover on gallery thumbs. Rollover chews up the large image directly above….
    Too complicated to explain so a shot a quick video of it. Any help would be appreciated.
    You can view it here. http://screencast-o-matic.com/u/VtgF/Enfold_Gallery_Rollover_Bug

    Searched forum support for: gallery rollover, gallery rollover bug , rollover bug, gallery bug, portfolio gallery rollover bug

    WP Dev Url – http://dev100.us/balloons/

    Theme Name: Enfold
    Theme version: Version: 2.1

    Active Plugins:
    Advanced Custom Fields
    Advanced Custom Fields: Gallery Field
    Advanced Custom Fields: Options Page
    Advanced Custom Fields: Repeater Field
    BackupBuddy
    Black Studio TinyMCE Widget
    Duplicate Post
    Media Categories
    Pinterest RSS Widget
    Post Types Order
    TablePress
    WordPress SEO

    #178110
    This reply has been marked as private.
    This reply has been marked as private.
    #177779

    Topic: Debug

    in forum Enfold
    mensmaximus
    Participant

    Hi,

    i have added the debug code to the functions.php file within the enfold theme directory.

    
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug() {
        return "debug";
    }
    

    Although ‘Avia Layout Builder’ and ‘custom fields’ are active i dont get displayed the debug field to manually edit the code. What have i done wrong?

    Btw. editing the functions.php seems to be a bad idea because i guess you will overwrite this file with any update. Wouldn’t it be much better to have a functions-custom.php included like the functions-enfold.php?

    Regards

    Michael

    #177313

    Hi!

    1) You can change the border width with following css code

    
    #top .header_color .avia_mega_div > .sub-menu, #top .main_menu ul:first-child >li > ul {
    border-top-width: 4px!important;
    }
    
    

    2) Yes, custom fields would be a solution but it requires some custom code. Depending on what you need I recommend to to hire a freelancer. You can use the ava_after_main_menu action (see: http://codex.wordpress.org/Function_Reference/add_action ) to output the code. The advantage would be that you can place the banner image code into a child theme file.

    3) I think the “text shift” is caused by an unnecessary br tag in the html source. I think WP adds it because of the script tag. Try to place the js scripts into the same line like the image link – i.e.

    
    <p>
    <a class="wistia-popover[height=540,playerColor=7b796a,width=960]" href="http://fast.wistia.net/embed/iframe/tyg8zrndv4?popover=true" style="position: relative; overflow: hidden; display: block;"><img style="border: 1px solid black;" alt="" src="http://embed.wistia.com/deliveries/b47d9488778804ce44807dffedc629c202ee909e.jpg?image_play_button=true&image_play_button_color=7b796ae0&image_crop_resized=282x159" width="282" height="159"><span class="image-overlay overlay-type-extern" style="opacity: 0; left: 0px; top: 0px; display: block; height: 151px; width: 267px;"><span class="image-overlay-inside"></span></span></a>
    <br>
    <script charset="ISO-8859-1" type="text/javascript" src="http://fast.wistia.com/assets/external/popover-v1.js"></script>
    </p>
    

    should turn into:

    
    <p>
    <a class="wistia-popover[height=540,playerColor=7b796a,width=960]" href="http://fast.wistia.net/embed/iframe/tyg8zrndv4?popover=true" style="position: relative; overflow: hidden; display: block;"><img style="border: 1px solid black;" alt="" src="http://embed.wistia.com/deliveries/b47d9488778804ce44807dffedc629c202ee909e.jpg?image_play_button=true&image_play_button_color=7b796ae0&image_crop_resized=282x159" width="282" height="159"><span class="image-overlay overlay-type-extern" style="opacity: 0; left: 0px; top: 0px; display: block; height: 151px; width: 267px;"><span class="image-overlay-inside"></span></span></a> <script charset="ISO-8859-1" type="text/javascript" src="http://fast.wistia.com/assets/external/popover-v1.js"></script>
    </p>
    

    If this doesn’t work because of whatever reason try to add following code to the quick css field

    
    .home .flex_column .iconbox_content p br{ display: none; }
    

    4) Try following css code – it should replace the rectangles with bullets

    
    .avia-bullet {
    border: 2px solid !important;
    border-radius: 2px;
    }
    

    Best regards,
    Peter

    #177304

    Hey!

    Glad that Types works for you. It’s a great plugin anyway because it helps you to crete custom post types and taxonomies too.

    Regards,
    Peter

    #176925

    I just figured out, that with the types plugin it works automaticly, while it doesn’t with some other plugins i have tested.

    http://wordpress.org/plugins/types/

    #176907
    wesdacar
    Participant

    Hi i arrleady learned how to add custom fields to the portfolio in this topic.
    https://kriesi.at/support/topic/portfolio-items-custom-fields/

    Just now i would like to know, how can i add some advanced custom fields to it, that i created with a plugin like
    http://wordpress.org/plugins/advanced-custom-fields/ or
    http://wordpress.org/plugins/custom-content-type-manager/

    i did try to just add the name “datefield” of the customfield to the line in the register-portfolio.php:
    ‘supports’ => array(‘title’,’thumbnail’,’excerpt’,’editor’,’comments’,’custom-fields’,’datefield’)
    but doesn’t work

    Thanks for answers

    • This topic was modified 12 years, 3 months ago by wesdacar.
    #175985
    lydia
    Participant

    Hi there,

    I have searched the other topics but unfortunately it hasn’t helped.

    I currently have a fixed header, with social icons.

    However, there is a gap between the header and my content and then a further gap which shows the location to the user e.g. “You are here: Home/ Services / Airport Transfers.”

    I would like these sections removed. I have tried to input custom css fields in enfold styling but this has not worked and has only caused problems with the header. My website link is: http://istudentservices.com/airport-transfers.

    Please help.

    #175015

    Just for making clear my final purpose: What I really want is being able to search through multiple portfolio categories, tags and custom fields in my portfolio and present then in a portfolio grid.

    I have seen various taxonomy plugins but they speak about posts..

    Which is the best way to achieve it?

    #174569

    Hi!

    You would need to build a custom comment form template if you want to re-position the input fields. A basic guide can be found here: http://codex.wordpress.org/Function_Reference/comment_form

    Enfold just uses the default comment form and the comment_form() function to call the default input fields and you can’t modify the output directly. You can try to use the comment_form_after_fields action though (see code in /wp-includes/comment-template.php and this thread: http://wordpress.stackexchange.com/questions/24116/using-filter-to-add-additional-fields-to-comment-form ) to add additional input fields to the form.

    Cheers!
    Peter

    #171953

    Hey cdiver!

    I seen that happen on some other users, but it was plugin related issue. You can try deactivating all active plugins and check if it is still the same. And you can post the link to your website so we can take look if we can solved it with some custom css

    Cheers!
    Yigit

    #171226

    Hi Ismael

    Sorry for the slow response.
    Seems like there is a clash with CMB Metabox framework https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress
    Whenever that is enabled, the ‘add media’ function seems to bug out.
    Looks like a JS error, so probably a clash of JQuery or something.
    I will investigate further and update this if i find a solution.

    thanks

    #168015

    Hi!

    Just a small update on this – we now decided that we’ll give the user the choice if he wants to set the paths manually or use the “automatic fallback”. If you add

    
    add_theme_support('avia_template_builder_custom_html5_video_urls')
    

    to the functions.php Enfold will show 3 url fields instead of one and you can set more than one video url. Without this code Enfold will try to load the other video files automatically.

    Regards,
    Peter

    #167532

    Hi

    Futher to this i have manged to get some output from Safari error logs (Firefox/Firebug crash out).

    After insert into post is pressed, the following is returned:
    avia_media.js:141RangeError: Maximum call stack size exceeded.

    It would seem that there is a clash with AVIA and the cmb_metabox framework on
    https://github.com/jaredatch/Custom-Metaboxes-and-Fields-for-WordPress

    as if i disable the function to init the framework, the WP functionality then works to insert a post.

    Part of the init.php function is to call the following

    function cmb_scripts( $hook ) {
    if ( $hook == ‘post.php’ OR $hook == ‘post-new.php’ OR $hook == ‘page-new.php’ OR $hook == ‘page.php’ ) {
    wp_register_script( ‘cmb-scripts’, CMB_META_BOX_URL.’jquery.cmbScripts.js’, array( ‘jquery’,’media-upload’,’thickbox’ ) );
    wp_enqueue_script( ‘jquery’ );
    wp_enqueue_script( ‘jquery-ui-core’ ); // Make sure and use elements form the 1.7.3 UI – not 1.8.9
    wp_enqueue_script( ‘media-upload’ );
    wp_enqueue_script( ‘thickbox’ );
    wp_enqueue_script( ‘cmb-scripts’ );
    wp_enqueue_style( ‘thickbox’ );
    wp_enqueue_style( ‘jquery-custom-ui’ );
    add_action( ‘admin_head’, ‘cmb_styles_inline’ );
    }
    }

    Could this be the source of the conflict do you think?

    Many thanks for any guidance.

    Phil.

    #164108

    Hi Jasmine,

    While it is definitely possible, the contact form you want to do it on would need to be customized to fit that layout with each field getting its own custom width.

    It would be 1-2 hours of time for a freelance developer to customize but it wouldn’t be easily modified down the road since it would be custom to the specific fields at that time.

    Regards,

    Devin

    #163965
    <?php
    global $avia_config;
    	/*
    	 * get_header is a basic wordpress function, used to retrieve the header.php file in your theme directory.
    	 */
    	 get_header();
     	 if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
    	 ?>
    		<div class='container_wrap main_color <?php avia_layout_class( 'main' ); ?>'>
    			<div class='container'>
    				<div class='template-page template-portfolio content  <?php avia_layout_class( 'content' ); ?> units'>
            
                  <?php 
    				// DYNAMIC CONTENT
                  echo "<div style='float:left; border:1px solid #E1E1E1; margin-right:5%; margin-bottom:20px;'>";
    			  	if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
                  the_post_thumbnail( );
                  } 
    				the_title( '</div><h3>', '</h3><p>' ); 
    				echo strip_tags (
    				get_the_term_list( get_the_ID(), 'customers_entries' )
    				);
    				$customers_website = simple_fields_get_post_value(get_the_id(), array(3, 1), true);
    				echo "</p><p><a href='$customers_website' target='_blank'>$customers_website</a></p>";
    				?>
                     
    				<?php
    				/* Run the loop to output the posts.
    				* If you want to overload this in a child theme then include a file
    				* called loop-page.php and that will be used instead.
    				*/
    
    				$avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
    				get_template_part( 'includes/loop', 'portfolio-single' );
    				?>
    
    				<!--end content-->
    				</div>
    
    				<?php
    				//get the sidebar
    				$avia_config['currently_viewing'] = 'page';
    				get_sidebar();
    				?>
                    
    			</div><!--end container-->
    		</div><!-- close default .container_wrap element -->
    <?php get_footer(); ?>
    #163795

    Hello DavyE!

    This is unfortunately quite a bit beyond what we can assist with via support. When our queue is low we’ll sometimes go above and beyond individually to put together a custom layout/solution but in general its best to take something like this to a freelance developer who can spend the needed time putting things together and still be able to support the new customization (since we wouldn’t be able to).

    Best regards,
    Devin

    #163693

    No problem,

    My theme setup is as follows:

    WordPress v 3.6.1

    Latest version of enfold theme installed
    keane-ncs child theme folder that contains the following:

    functions.php (contains nothing at the moment)
    screenshot.png
    style.css

    I haven’t modified any of the enfold theme files directly – the only things I have customized are the CSS styles in the style.css file.

    Here is a list of my installed plugins: (all are up-to-date with latest version.)

    Advanced Custom Fields
    Akismet
    Captain Typekit (ACTIVE)
    CMS Page Order
    Custom Permalinks
    Custom Post Type UI
    Exclude Pages from Navigation
    Gravity Forms
    WordPress SEO

    As you can see I really haven’t done much work on the theme at all – but I know that it is something strange involving the child theme as stated above in a previous reply. I also tried to deactivate all my plugins and also get rid of everything in the child theme except the style.css file but nothing seemed to work…

    Thanks,

    – Derek

    #163514
    DavyE
    Participant

    Hi, the following is kind of difficult to explain, so let’s hope I succeed in doing so. What I basically need to do is automatically show certain content felds on my portfolio pages. For example:

    I have hundreds of customers which I added in the portfolio section. I’ve added the whole list of customer logo’s on a page. When visitors click on a customer logo to see the customer details page, they get details such as a quote, pictures, downloadable pdf files, and so on. This information is added through the Avia Layout Builder.

    BUT, above the content of the Avia Layout Builder, I want to automatically show the following elements, because most customer detail pages will consist ONLY this info and it’s therefore a big timesaver to make this happen automatically:
    – Show the customer logo (featured image)
    – Show the customer name (page title)
    – Show the customer country (assigned category)
    – Show the customer website link (custom field added with Simple Fields plugin)

    On top of that, I’d like to be able to layout it somewhat so that the logo is placed to the left of the title+country+website. I’ve already tried adding some php in the single-portfolio.php file, but my PHP knowledge is very limited and I keep getting errors.

    To call for the correct fields, I think it’s something like:
    – Featured image: the_post_thumbnail( );
    – Page title: the_title( );
    – Assigned category: get_the_term_list( get_the_ID() )
    – Simple Fields custom field: $customers_website = simple_fields_get_post_value(get_the_id(), array(3, 1), true);

    Below is an example of the code I’ve put together, which still has an error and seems to replace any content inside the Avia Layout Builder, but as I explained it’s supposed to just show above it.

    <?php 
    echo "<div style='float:left; border:1px solid #E1E1E1; margin-right:5%; margin-bottom:20px;'>";
    if ( has_post_thumbnail() ) { // check if the post has a Post Thumbnail assigned to it.
    the_post_thumbnail( );
    } 
    echo "</div>";
    the_title( '<h3>', '</h3><p>' ); 
    			   
    echo strip_tags (
    get_the_term_list( get_the_ID(), 'customers_entries' )
    );
    $customers_website = simple_fields_get_post_value(get_the_id(), array(3, 1), true);
    echo "</p><p><a href='$customers_website' target='_blank'>$customers_website</a></p>";
    ?>

    Any advice is greatly appreciated.
    Thanks in advance!

    #163486
    xpoveda
    Participant

    Hi, I’m developing my second site with your theme.

    Sorry if I do lots of questions but I will get a generic vision of all possibilities to offer to customers.

    Now I have three more and all I’ll use your theme (with their respective licenses) because I find it super-agile.

    This project is a pastry in the color scheme is pink.

    I meet different problems, that I can not afford, see if you can help me.

    The main problem I see is the use of certain styles in the control panel for more than one thing and, above all, the colors that appear are defined (which I assume will be a subject of opacity).

    IMAGE 1

    I put red in one of the fields the color scheme and background affects the social icons, hover the menu, and search bar, how to make it different?. I want same color in social and search bar (dark pink) and in hover menu another color (red by example).

    http://imageshack.com/photo/my-images/842/p9o6.png/

    IMAGE 2, 3 and 5

    When initially loading the menu or via logo looks correct, but when entering a node and go to page x, when I return to menu nodes letters are not displayed correctly (grey, why????), would have wanted to be white.

    http://imageshack.com/photo/my-images/543/i1r8.png/
    http://imageshack.com/photo/my-images/543/i1r8.png/
    http://imageshack.com/photo/my-images/11/pgzr.png/

    FIGURE 4

    How to make the main links are black?

    http://imageshack.com/photo/my-images/812/9k2x.png/

    PICTURE 6

    How to make the search not return form letters in gray (another time???, ;))

    http://imageshack.com/photo/my-images/5/4e9o.png/&#8230;

    Thanks so much for your help!!!

    Xavier.

Viewing 30 results - 1,561 through 1,590 (of 1,622 total)