-
Search Results
-
Hello
I am using your Enfold theme.I have used the default page layout rather than the advanced ones for my portfolio pages as I wanted to use the advanced custom fields plugin to give my client really specific data entry fields and them not to have to think about layout at all.
Using the default editor is it possible still to use your image gallery within the page.
In WordPress I still see the Additional portfolio settings dropdown section with the ability to add images etc but I cannot get this to display on the front end of the site.
Is this possible or do I have to use an image gallery plugin such to be able to give a gallery for each portfolio item.
Hope that makes sense.
Thanks
JoelI’m trying to override Enfold’s CSS for tables and input fields, on this page: http://www.finalsmoke.net/order-form-1/
using these styles in my custom style.css file…
input.fsfield {
border-width: 1px;
border-color: black;
width: 20px;
color: #000;
line-height: normal;
background: rgb(255,255,255);
font-size: 13px;
font-family:”Times New Roman”,Georgia,Serif;
margin: none;
}.fstable table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
border-collapse: True;
background: none;
}However, my table (which has id=’fstable’) still has a white background (should be transparent), and my form fields (which use class=’fsfield’) are too wide and have the wrong font.
The above page is using a template in a child theme. The template contains the table and form fields which are not responding to my custom css in styles.css.
Please advise.
Is there a way to use custom fields to remove the header container from one specific page?
I am using prettyPhoto to open a Contact Form (matt-morse.com/contact-matt) but would like to remove the header space.
Hey!
Have some trouble between different plugs. Tried to deactivate them one by one. If I come to Gravity Forms there is a white Screen after I deactivate it. If I re-activate it, all is normal ? Does anybody has an idea why this happens ?
Do you know any issues between the new WooCommerce and BuddyPress ? If I try to add a new customer with the checkout, the ajax loading went to infinity after I insert the datas in the fields for email, phone and password… `
hi again kriesi,
– created a custom post type for recipes (with types plugin)
– copied and changed single.php and loop.php to my child theme
– later i want to integrate some custom fields to build a new layoutwhat i try to do now is to change the html to output schema.org relevant tags, what seems to happen (for example) here:
echo "<article class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."' ".avia_markup_helper(array('context' => 'entry','echo'=>false)).">";within the loop.php
may you help me to get this working?
greez
reneI’m using my blog as an events calendar, so I’ve used ACF to add a date picker right below the post title. I’ve updated the loop-index to display posts by that date, rather than publish date.
I’m wondering if it’s possible to do the same thing with the Blog Posts widget in the layout builder. That block seems to take the formatting edits from loop-index, but it’s still sorting by the publish date.
Thanks
How do I add a custom field to an Enfold portfolio item? I searched in the WP screen options but can’t find how to enable it. Custom fields are enabled in ordinary WP posts.
If such an option doesn’t exist are you considering adding custom fields into an Enfold portfolio item?Hello, I have a custom form to allow users to post from the front end to a custom post type (pending).
The form function perfectly well on other themes (I have tested on other themes I have written). The form also works fine if I include the enfold header but comment out the include for the footer. Similarly, the form works if I comment out the header but include the footer. So whats the problem….well, when both header and footer are included the form does not post.
Any ideas as to what in the theme could be prevent normal functionality?
Here is my form:
<div class="entry-content-wrapper clearfix" style="border: solid 0px black"> <form class="avia_ajax_form" method="POST" form id="new_post" name="new_post" method="post" action="" enctype="multipart/form-data"> <fieldset style="border: 0px;"> <p id="IGN" class="form_element_half"> <label for="offender_ign" placeholder="IGN">Offender IGN <abbr title="required" class="required">*</abbr></label> <input id="offender_ign" type="text" value="" tabindex="5" name="offender_ign" class="text_input is_empty"> </p> <p id="type_of_offence" class="form_element_half_2 form_element_half"> <!--<label for="cat">Type:</label> <?php wp_dropdown_categories( 'tab_index=10&taxonomy=portfolio_entries&hide_empty=0' ); ?> --> <label for="type_of_offence">Type of Offence</label> <select id="type_of_offence" class="select " name="category"> <?php // ======= Custom post types category drop down ======== $taxonomy = 'portfolio_entries'; $terms = get_terms($taxonomy); // Get all terms of a taxonomy if ( $terms && !is_wp_error( $terms ) ) : foreach ( $terms as $term ) { echo '<option value="' . get_term_link($term->slug, $taxonomy) . '">' . $term->name . '</option>'; } endif; ?> </select> </p> <p id="element_description"> <label for="description" class="textare_label hidden textare_label_avia_description">Description</label> <textarea id="description" rows="7" cols="40" class="text_area " name="description"></textarea> </p> <p id="element_image_upload"> <label for="image_upload">Image Upload</label> <input id="image_upload" type="file" value="" class="text_input" name="image"> </p> <p id="element_tags"> <label for="post_tags">Tags <small>(Comma Separated List)</small></label> <input id="post_tags" type="text" value="" class="text_input " name="post_tags"> </p> <p id="hidden_submit"> <input type="hidden" name="form" value="1"> <!-- on click, do wordpress action new_post --> <input type="submit" class="button" name="submit" value="Submit"> </p> <!-- ensure post is coming from site and not elsewhere --> <input type="hidden" name="action" value="new_post" /> <?php wp_nonce_field( 'new-post' ); ?> </fieldset> </form> </div>The form functions:
<?php if( 'POST' == $_SERVER['REQUEST_METHOD'] && !empty( $_POST['action'] ) && $_POST['action'] == "new_post") { // Do some minor form validation to make sure there is content if (isset ($_POST['offender_ign'])) { $title = $_POST['offender_ign']; } else { echo 'Please enter the In Game Name (IGN) of the offender'; } if (isset ($_POST['description'])) { $description = $_POST['description']; } else { echo 'Please enter some notes about the hate speech'; } $tags = $_POST['post_tags']; // ADD THE FORM INPUT TO $new_post ARRAY $new_post = array( 'post_title' => $title, 'post_content' => $description, 'post_category' => array($_POST['category']), // Usable for custom taxonomies too 'tags_input' => array($tags), 'post_status' => 'pending', // Choose: publish, preview, future, draft, etc. 'post_type' => 'portfolio' //'post',page' or use a custom post type if you want to ); //SAVE THE POST $pid = wp_insert_post($new_post); //SET OUR TAGS UP PROPERLY wp_set_post_tags($pid, $_POST['post_tags']); // Image handling if ($_FILES) { foreach ($_FILES as $file => $array) { $newupload = insert_attachment($file,$pid); // $newupload returns the attachment id of the file that // was just uploaded. Do whatever you want with that now. } } //REDIRECT ON SAVE $link = "/success"; wp_redirect( $link ); } // END THE IF STATEMENT THAT STARTED THE WHOLE FORM //POST THE POST YO do_action('wp_insert_post', 'wp_insert_post'); ?>Hi, I would like a little help in making some final changes for the website http://hbjcapital.wpengine.com/ (hosted on WPengine)
1. I would like to have each post in the grid layout to have a light grey background so that it appears distinct, just like you see in the featured post below the layer slider.
2. When the user clicks on “customer login” in the top right in the thin blue bar, a pop-up should display just like the search function pop-up, which will have fields for username and password. The field should then pass the data to the same fields on soft.hbjcapital.net and upon validation, open the userportal at soft.hbjcapital.net in a new tab. I do not like how its opening in the frame now.
3. Also, how do i hide a featured post from appearing in the grid layout below it, as you can see the featured post also appears as the 1st entry in the grid.
Please have these answered soon. Thanks :)
Hi, on this page: http://www.familybudgeting.org.nz/members/order-form I have a resource order form, with drop down boxes using the Gravity Forms “enhanced user interface”. (See question 3, “Your budgeting service”)
In these drop down fields (and only these) the width is being set to extremely narrow.
I’ve tried overruling it with custom CSS but can’t work it out; it seems to be generated by javascript? This makes me think the Gravity Forms javascript is conflicting with the Enfold javascript – or something.
Clearly I’m not sure if it’s an Enfold issue or something else, but any help would be appreciated.
Cheers,
Mike
Hi,
I am using the post slider to display posts with a certain taxonomy and in each post there are a number of custom fields. I would like to be able to display one of these customer fields in the post slider output. I understand I will have to edit the query but am wondering how to do this without editing the theme files direct. I have a child theme set up and am using that for css and other edits, so any direction you could provide would be appreciated.
The custom field is called ‘cost’ and display a price for an event that I would like to be able to display
Thanks

