-
Search Results
-
I’m having trouble inserting a color section with a fixed image. At first, I thought the issue might be related to a low res image I was using, so I grabbed one off the demo site. The problem was still persistent: white space on a mobile device instead of showing the picture. I have the color section amongst other elements in the layout builder. Just to rule out any problems, I disabled all plugins, but that didn’t change anything. Next, I created a test page, with only the color section. Much to my surprise, the picture began to display. So it appears the problem is directly related to having the color section amongst the other elements in layout builder.
I can share the link to the site but because it isn’t available to the public I will need to mark it private.
Hi
I have used the Enfold theme on 3 websites, 2 of which have no problems. On my website http://www.Sixof1music.com whenever i look via a mobile device all i see is hyperlinks and widgets plus the Google Adsense image.
I have been through the forums and tried the solutions that have been presented, i have disabled all plugins, turned off Jetpack and tried anything else i found in this forum nothing seems to work.
Today i looked through my laptop and even there now it doesn’t display correctly, it has been fine there for weeks.
Please any help?
Hi,
I would like to get this result (please see screenshot above) where you have the nav bar then an image which is full screen large and underneath the blog section with the sidebar on the right.
I can do it with the layer slider but as I want to do it on several pages concerning my blog posts I’m afraid it will slow down my site. Moreover I don’t need the interactive effect…I basically just need a banner I will make by myself.
So I was wondering if there was an alternative for me to get this result without a layer slider?
In fact I have tried with the other sliders but they don’t go on top of the sidebar…Kind regards,
Chrys
Topic: 403 Error When Adding Images
I have just installed Enfold. When I go to any page and use the “Add Media” button to add images, after I click either the “Preview Changes” or “Update” button, I get a 403 error. I can see the image reference when I switch tabs to text.
Any idea how to fix this?Topic: Home V6 – Center Menu?
I want to enlarge or lessen content’s size in the mobile. because I think that tab or some images is small in the mobile
and I want to lessen sidebar space . because I think that white space is too large in the sidebar
my site link : http://www.lawbis.com/



Topic: Max Height for Post Slider
Hey guys,
I am having an issue with layerslider it just keeps timing out and never loading on my host. I am using websynthesis.com for hosting and they gave some advice to try and debug it… So it appears that the homepage is consuming at least 42mb of memory and of course not loading. I looked at previous posts on this issue and tried minimizing all images on slider. i have also tried deactivating all plugins and getting the same issue… 42mb memory usage and slider not loading.
Would really appreciate your input.
Is it possible to make the portfolio ajax slider preview sit flush with the top of the screen flush with the top of the image.
Please see 2 images attached.
https://www.dropbox.com/sh/tfdul3so4jc01ez/JwvORDlJ7F
portfolio1: how it displays when opened at moment
portfolio2: how i would like it to display when clicked openHope that makes sense :)
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'); ?>
Viewing 30 results - 97,801 through 97,830 (of 106,489 total)

