Viewing 30 results - 1,591 through 1,620 (of 1,633 total)
  • Author
    Search Results
  • #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.

    #163050

    I’ve basically added this to that single-portfolio.php file:

    <?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>";
    				?>

    This is supposed to make sure that the logo (featured image), the title and a custom field of that specific page are automatically shown on the page in a specific way. If I delete that piece of code, the page is back to normal (empty content though).

    What I’m trying to achieve is to have a few elements of the portfolio page to be shown, then see all of the page content (which doesn’t seem to load now) and then the footer etc.

    The strange thing is, the “Good link” has the exact same piece of code and there’s no error there.

    • This reply was modified 12 years, 5 months ago by DavyE.
    #29252
    mailworm
    Participant

    … The “sensor” parameter specified in the request must be set to either “true” or “false”?!?

    I have put coordinates into the fields only. No bubble info, no custom marker URL added. Whats the deal?

    #134010

    In reply to: Portfolio meta

    Thanks, this works. However, I can’t get the meta info from the post. I’m using custom fields for the same purpose as the meta boxes in your other themes, but I’m unable to get that information in the shortcode.php.

    #27898
    zerozendesign
    Participant

    Right now it seems that the bottom margin set for form fields is 20px. How would I go about adding the css to quick css for reducing the bottom margin of the the advanced custom menu found here – http://godiaperfree.com/newsite/members-area/. I don’t necessarily want to reduce it site wide for field elements.

    #133861

    Hi rhinocorp,

    I’m not sure how the confusion happened but we aren’t support for Contact Form 7. Customization for third party plugins needs to be handled by that plugin author.

    In this specific instance we would usually be able to assist anyhow but that table doesn’t have any css selectors to modify the width on the tables.

    The pagination question is not doable as far as I know. The mobile version of the site is the same code as the desktop except it has the css adjusted to display better on mobile devices.

    You should definitely update the theme so that you are also able to update to WordPress 3.6 since most plugins are now getting updates for it as well and being no different versions can start to cause compatibility issues as well as make it hard to give support since file contents may be different as you’ve already noticed.

    Regards,

    Devin

    #134843

    Hey!

    Yes the preview currently doesnt work with the layout builder, since the builder uses custom fields to save its data, which are not tracked by the wordpress preview function. I am already thinking of ways to fix this, however I cant give an ETA yet…

    Hey!

    Yes thats currently not possible, i will try to make previews and revisions work with a future release but at this moment the template builder uses custom input fields to save the data which are not tracked by either revisions or the wordpress preview

    #133855

    Hi,

    It always say “”Your access to this site has been limited”” when I clicked on any links. I don’t see the original issue where you place a table for name and age fields.

    Edit config-templatebuilder > aviashortcode > portfolio.php, find this code:

    $link_markup = apply_filters('avf_portfolio_custom_image_container', array("a href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);

    Replace it with:

    $link_markup = apply_filters('avf_portfolio_custom_image_container', array("a target='_blank' href='{$link}' title='".esc_attr(strip_tags($title))."' ",'a'), $entry);

    Regards,

    Ismael

    #27435

    Topic: Portfolio meta

    in forum Enfold
    emilottersten
    Participant

    In your other themes you have an easy way to add portfolio meta (e.g client, software etc.). I’m trying to make something like that but with custom fields, but I don’t want to change the parent theme files (yes, I’m running the child theme). I thought I could just duplicate the files into my child theme folder, but it’s not working.

    Any plans on re-adding the meta? Or any suggestion on how to do this? I want that info to show directly in the ajax preview, but without having to add the text in all the items excerpt by hand.

    #133270

    It’s a new feature I worked on the last week. It helps you to show/hide a menu item if a certain condition is fulfilled. Kriesi and I think that the feature can confuse some of our users – especially if they’re wp beginners and not tech savvy and we decided to hide it a bit. To activate it add following code to functions.php – insert it at the very beginning of the file (after global $avia_config) or in your child theme functions.php

    global $avia_config;
    add_theme_support('avia_conditionals_for_mega_menu');

    Then go to Appearance > Menus and you’ll notice a new checkbox/option for each menu item. Tick it and you’ll see up to 4 additional option fields (depends on the dropdown selections)

    The first dropdown allows you to select if you want to show or hide an item if the condition is fulfilled or you can also add a custom css class if the condition is fulfilled.

    If you select the last option a new field will fade in which allows you to enter the css class(es).

    The second dropdown allows you to select the conditional check (is user logged in, is user logged out, is user on a page, is user on a post page, etc.). Some conditionals (like is user on a page, is user on a post page) also allow you to filter the menu items based on an additional parameter (eg the post/page id). In this case another field will pop up where you can enter the additional parameter (i.e. the id of the post/page).

    Overall I think I created a very powerful, extendable and logical ui which allows you to customize the menu quite easily – nevertheless you must wrap your mind around it and the new options definitely add some complexity to the theme/menu configuration..

    #27206
    LouisLeedham
    Participant

    I have my site almost finished now but im having 1 issue.

    All the theme colours are perfect throughout the site, accept for the contact form.

    The titles are fine its the input fields that need to have a different background colour.

    I have tried:

    .ajax_form fieldset{

    background-color: #37589B;

    }

    but this changes the colour of the headings not the input boxes!

    Please Help!!!! :D

    #132282

    Thank you. That works

    #132281

    Hey!

    Ah ok :)

    Open up wp-contentthemesenfoldincludesadminregister-portfolio.php and replace

    'supports' => array('title','thumbnail','excerpt','editor','comments')

    with

    'supports' => array('title','thumbnail','excerpt','editor','comments','custom-fields')

    Best regards,

    Peter

    #132280

    Hi Dude

    Thanks for your answer. I try that code, but it dosn’t display me the custom field box.

    Maybe i did explain myself wrong.

    What i’m looking for is, to have this box:

    http://codex.wordpress.org/images/7/7f/custom_field_example.jpeg

    So that i can add custom fields while i’m creating some portfolios.

    #132279

    The portfolio items do not support custom fields out of the box but you can implement them with: http://codex.wordpress.org/Function_Reference/get_post_meta

    You can insert the code in enfold/includes/loop-portfolio-single.php – i.e. insert it below:

    the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>');

    A sample code would be

    the_content(__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span>');

    $mymeta = get_post_meta( get_the_ID(), 'mymetavalue' );
    echo $mymeta;

    This code would display the content of the custom field with the key/id “mymetavalue”.

    #26967
    wesdacar
    Participant

    Hi

    How can i add, or activate the custom fields withing the portfolio items in the enfold theme?

    I would like to filter the portfolio items with a query search plugin like “Advance WP Query Search Filter” or something similar if someone has a good idea for that as well.

    Thanks for Answers

    #26623
    duttonstuart
    Participant

    I am currently using WCK Post type creator to create a new post type which has worked fine and I have added some additional custom fields in that post type.. however when I use the blogpost in the advanced layout and choose the relevant category that this would post to it is not picking the post up.. Do I need to add in a query to pick these up in the loop? and any ideas how I would do this?

    #130108

    Thanks for the reply. I’ve added that line in functions.php, but I’m not seeing any additional fields in the editor.

    Am I missing something?

    #26431
    learningherbs
    Participant

    I know this may fall under the realm of not supporting third party plugins, but this is a pretty major conflict.

    I noticed this morning that no JS features were working in the WP admin’s Add/Edit Posts pages (though oddly not Add/Edit Pages). No dragging and dropping or minimizing meta fields, no Add Media lightbox, and so on. Usually a sign of a JS conflict. I spent a while trying to figure out what plugin or custom theme code might be causing it, and arrived at Simple-Press forums. When deactivated, the admin page behaved fine. Then, for good measure, I changed the site theme from Enfold to TwentyTwelve, with Simple-Press forums activated, and again the admin page proceeded to work perfectly.

    From what I can gather after doing my best to audit the source code from both working and non-working versions, this may have to do with the order in which Enfold JS scripts are queued in the code. This is hard to be sure of, as there is a lot of inline code as well, not just queued JS files.

    I’m happy to give you login information to this installation so that you can look around. Any help here would be immensely appreciated. We’re also in a pretty tight pinch with doing site updates and would happily compensate your team for any help looking into this.

    Thanks!

Viewing 30 results - 1,591 through 1,620 (of 1,633 total)