Viewing 30 results - 10,411 through 10,440 (of 11,218 total)
  • Author
    Search Results
  • #213168

    I figured out how to remove the search.

    I still need help with adding a small blue button that says ‘Request a Demo’ to the main navigation and need it to align it all the way to the right. Is this possible?

    ** This is for the Enfold Theme **

    • This reply was modified 12 years, 3 months ago by ojooce.
    #213157
    Camineet
    Participant

    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');
    
    ?>
    #213154
    aparteDenmark
    Participant

    Dont know if this is asking too much, -…I just really think it would be cool to have theese features
    -and just hope it to be simple soloutions !

    1…..http://jsa-gitterflex.apartebuild.dk/wp-content/uploads/2014/01/breadcrum-remove-blogpage.jpg
    I’d like to get rid of the breadcrumbs that appear on post pages AND singlepost pages aswell (but not on the homepage in general):

    I’v tried some older threads but cant find a piece of code that will work on my page :-(

    2….Alternatively i would be happy just to be able to control the pages wich the breadcrumblinks link to !!!

    3. Would it be possible to have a backarrow-button” from singlepost to blogpage it feels like landing in the dessert the way it just end now :-)

    4…..http://jsa-gitterflex.apartebuild.dk/wp-content/uploads/2014/01/scrollbar-on-blogpage.jpg

    -This would be a nice touch ! -Is there a simple piece of code to do this ?

    5…..http://jsa-gitterflex.apartebuild.dk/wp-content/uploads/2014/01/partner-logo-as-menu.jpg

    -My client wants the images (in all there are 8) in the partner Element/logo to change on hoover and act more like a menu that shows the current page the visitor is seeing by holding on to the hoover-image. -Just like the red line jumps and stays underlining the text in the header navigation line. All 8 images have unique links to pages i dont want to see in my header/ -or footer menu !

    6….. You supported me in this thread https://kriesi.at/support/topic/header-navigation-menu-and-spacing-on-blogpagepost/#post-212517

    -The code provided by ismael worked perfektly but im wondering if it would be even nicer to make the whole area above the navigation textline less active just the way ismaels code did to the area covering the telephonenr. Its never goodlooking when you have mouse shoving “hotspot” in blank areas :-)

    Is there an easy fix for this too ?

    pagelink:http://jsa-sikring.apartebuild.dk/

    All the best to you good people
    Claus.

    #213084

    In reply to: Button Details

    Hey pc37075!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    .avia-button.avia-size-large {
    padding: 15px 30px 13px;
    font-size: 20px; }

    Font size is 13px by default and i have not changed padding values as increasing font size already makes button bigger, if you want to increase padding, please adjust it as well

    Best regards,
    Yigit

    #212783
    jtchang
    Participant

    Hi Guys

    I have installed Enfold theme ok and everything seems to be working fine but when I choose the the dummy data import button I get the following error:

    Importing didnt work!
    You might want to try reloading the page and then try again
    (The script returned the following message:
    Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 84 bytes) in /home/zimoci5/public_html/webdev/wp-content/themes/enfold/framework/php/wordpress-importer/parsers.php on line 144)

    Any help to fix this would be great.

    Thanks
    J

    #212746

    Hi kenbo1978!

    Enfold uses the default “Ajax Add to cart” script and the default shop templates which come with WooCommerce – we do not modify this function or the “Add to cart” templates. Afaik most themes which are compatible with WooCommerce use this ajax script on the shop page simply because it looks better than reloading the entire page after the user clicked the “Add to cart” button. I suggest to contact the plugin author and to ask him if he can assist you with the plugin implementation. If not I recommend to stay away from the plugin.

    Regards,
    Peter

    #212350
    RichardBrooks
    Participant

    Hi I’m trying to place a button in the caption field of the ‘full width easy slider’ in Enfold using the frame option.
    http://www.k-international.com/translation/french-translation/
    I’d like to avoid having the overflow frame on the button, is that possible?

    Thanks in advance

    • This topic was modified 12 years, 3 months ago by RichardBrooks.
    #212331

    Hey!

    Changes are done, please review your website. You can find custom CSS code i added in Quick CSS section in Enfold theme options. I have modified the code you have added to make menu item into a button a bit to apply only on parent item.

    Best regards,
    Yigit

    #212143

    Hey albrowncompany!

    Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).

    Regards,
    Peter

    #212093

    Topic: Author Information

    in forum Enfold
    MtnStreamGroup
    Participant

    I’ve become a guest author on a website. When I logged into the site admin panel they had a ‘Profile’ tab. When I clicked on it, it had fields for all the major social media networks and button to change my photo for the author avatar. However, when I go to Users>Your Profile I don’t see fields for the same social media networks as on the other site and there’s no avatar. Is this not included in Enfold or am I missing a function of WordPress that needs to be included?

    And on another site I saw where the author photo was next to the blog post and when you hovered over it their social media contact information dropped down. How do we get that?

    #211749
    ProMathTutor
    Participant

    Hi there!

    I just put a PayPal payment button on a site I’m developing. In the Avia Layout Builder, I pasted the html for the button into the text editor of a text block. In the visual editor, the drop down menu for selecting an item, the text field below it, and the Buy Now button all look as they should.

    On the front end, when I load the page in my browser, there are two problems.

    1. The down arrow on the drop-down menu is not displayed, so the user cannot see that it is actually a dropdown, unless the user actually clicks on it.
    2. The drop-down menu is not wide enough to display all of the text, so about half of it is cut off.

    I’m using WordPress 3.8 and Enfold 2.4.5 with a child theme. The page I’m having trouble with is located at the URL below.
    http://www.highermathhelp.com/2013/payments/

    I’m guessing it’s a problem somewhere with the CSS. One idea I had was to set the id attribute on the <select> tag for the drop-down, and then to change the styling in my enfold child theme’s style.css file. That didn’t work. Any suggestions?

    Thanks!!

    • This topic was modified 12 years, 3 months ago by ProMathTutor.

    Hi!

    I can’r read your code – please use the “code” button to post it…

    Best regards,
    Peter

    Hey Dude
    Thanks :)
    With my others 14 wordpress websites i used to use codestyling localization and it works perfect.
    For the one i was talking i ca not use it so i try to use the String Translations tool.
    And i did :-) but it is not easy as with codestyling localization but it works..
    > i use this and it works:
    <a title="<?php echo _e('Tweet this','avia_framework'); ?>" class="addthis_button_twitter"></a>
    WHAT is the difference with yours?
    thanks

    Hi pako69!

    Use Codestyling ( http://wordpress.org/plugins/codestyling-localization/ ) and translate the po/mo file. 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).

    If you want to add some custom text to the translation file wrap it into a __() function like

    
    __(‘My text’,'avia_framework’)
    

    If you want to register a new text string with WPML see: http://wpml.org/faq/getting-string-translation-to-work/

    Best regards,
    Peter

    pako69
    Participant

    I used a child theme.

    In my own header.php i have had a line lik this :
    ” class=”addthis_button_twitter”>

    I go to WPML strings translations to add my french text but i fond nothing…

    So i try to find a string which is present ig the header.php :
    echo “<nav class=’main_menu’ data-selectname='”.__(‘Select a page’,’avia_framework’).”‘ “.avia_markup_helper(array(‘context’ => ‘nav’, ‘echo’ => false)).”>”;

    I open (within WPML strings translations) the file where this php string ha been found and… yes it found it but not in my child header.php file but it the parent theme:
    /home/sites/mysite.com/web/wp-content/themes/enfold/header.php

    Too bad… :-(

    #211560
    biekhois
    Participant

    Hi,

    I’ve tried several plugins, but no result. I want to create a modal popup after clicking a button with the enfold theme. The modal popup has custom HTML-code (a form) and javascript (form validation) for call-me-now functionality.
    I’m stuck and nowhere near a solution. Can you point me in the right direction?

    Example? Click on “test link” (in blue) on page http://www.voys.nl/meer-diensten/call-me-now/test

    Cheers.

    Bart

    #211446

    Hi Rubie!

    All buttons in the theme are cohesive, are you using the latest version of Enfold?

    Regards,
    Josue

    #211145

    Hi!

    Please try re-updating the theme via FTP and let us know if issue remains
    See http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Best regards,
    Yigit

    #211124
    mdekievit
    Participant

    Hi,

    I upgraded Enfold to 2.4.5 and now have some small bugs.
    In the search field, the button text show the word “Array”. Also on a few buttons and icons, the Fontello icons are missing.

    Kind regards,
    Matthijs

    Hey!

    Please add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    body div .avia-button {
    border-radius: 1px; }

    Best regards,
    Yigit

    #210788

    Hey!

    Have you tried this on Quick CSS?

    .avia_textblock,
    .avia-icon-list,
    .avia-button,
    .avia-testimonial,
    .iconbox,
    .avia_message_box,
    .avia-team-member,
    .widget,
    .post,
    .team-img-container img,
    .team-social,
    .iconlist_icon,
    .fallback-post-type-icon,
    .fullsize .related_posts,		
    .grid-image,				
    .avia-caption-content, .avia-caption-title, 
    .entry-content-wrapper,	
    .avia_start_animation
    {
    	-webkit-perspective: 1000;
    	-webkit-backface-visibility: hidden;
    }

    Best regards,
    Ismael

    #210587
    This reply has been marked as private.

    Hi jcsufootball07!

    1 & 2- You can add following code to Quick CSS in Enfold theme options under Styling tab and adjust as needed

    #top .main_color .avia-button.avia-color-theme-color { color: black;
    background-color: transparent;
    border: 1px solid black; }
    #top .main_color .avia-button.avia-color-theme-color:hover { border-color: red; color: black; }
    

    3- You are going to need to find a plugin to achieve that or hire a freelance developer for that kind of customization as it is beyond the scope of support we can provide. You can also request quote here.

    Best regards,
    Yigit

    #210048

    Topic: Sidebar Widgets

    in forum Enfold
    DaraEmerson
    Participant

    Dear Enfold Team,
    We would like to know if there is any option to change colour/typeface/etc… to the sidebar widget for text.
    Also we would like to be able to add a slideshow, photograph or a “sign-up” button or something similar to the sidebars in various pages.

    Most of the widgets for the sidebar pages seem to be for blogs etc… ours is a website.
    Please shed some light on this or show us some documentation explaining how to use the widgets and satisfactorily dsign the sidebars.
    Please excuse if we are missing something obvious somewhere.
    Thanks -Dara

    #209930

    Hey!

    1) Maybe I’m wrong but I think the author title/meta description is not translated because you didn’t set up a translation yet. Go to the user profile page: http://www.ld4change.com/wp-admin/user-edit.php?user_id=2&wp_http_referer=%2Fwp-admin%2Fusers.php%3Flang%3Dzh-hans%26admin_bar%3D1 and translate the English user profile (name, last name and nick name and the “Biographical Info”) to Chinese. You can switch between the Chinese and English version by using the language switcher dropdown in the admin bar.

    2) I checked the 404 page and everything is translated except the number 404 ( 404错误:找不到页面 and 404 找不到页面 ). Then I checked to the localization settings screen (Tools > Localization > Themes > Enfold, select Chinese “edit” and use the right text box to search for “404” text strings) and there I found exactly the same strings. If you want to change them edit these text strings and click the “generate mo-file” button.

    Cheers!
    Peter

    #209908

    Hi!

    The portfolio preview box will always show the entire preview content and you can’t create an excerpt of the preview text. However if you want to add read more button after the preview text open up /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio.php and replace

    
    $output .= $content;
    

    with

    
    $output .= $content;
    $output .= '<a href="'.get_permalink($id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a>';
    

    Cheers!
    Peter

    #209759

    Thanks for clarifying, Devin.
    The style settings though were not imported correctly. All the buttons and the hyperlink keep having the default green in Enfold and not the blue I set as standard in the Parent theme.

    #209749

    Hey Carsten!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    @media only screen and (max-width: 767px) {
    .responsive #scroll-top-link {
    display: block;
    }}

    Best regards,
    Yigit

    #209612

    Topic: Search icon

    in forum Enfold
    mwolfert
    Participant

    Hi guys,

    i use the Enfold theme with an graphical menue (UberMenue) this works fine but:
    the search button, sitting right to the navigation is reall a bit small :)
    Look here: http://blog.lichttraeumer.de/download/enfold_search-stuff.png

    How can i change the dimensions of this icon ?

    Br,

    Martin

    #209608

    Hi Devin,

    i am not sure I understood. If you mean that after installing and activating Enfold Child theme there is a button that allows you to load all Enfold parent theme settings, it is what I have clicked and then I saw a website which looked 90% like the parent but had those things that didn’t match (button styling colors and all the oages in the menu like I specified above). I followed the link Yigit kindly provided me in another thread (http://kriesi.at/documentation/enfold/using-a-child-theme/)

    If you meant something different, I am afraid I do not understand what I need to do to have the child theme look exactly as the parent Enfold theme I currently have.

    Where do I go wrong?

    Thanks.

    Antonio

Viewing 30 results - 10,411 through 10,440 (of 11,218 total)