Forum Replies Created

Viewing 30 posts - 29,011 through 29,040 (of 34,921 total)
  • Author
    Posts
  • in reply to: Blank site after updating to 4.2.5 – need help #920856

    Hi,
    Thanks, I will try to reproduce.

    Best regards,
    Mike

    in reply to: Undefined index in Slideshow Fullscreen Shortcode #920854

    Hi,
    Thank you again for sharing your solution, We will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: blog set up #920851

    Hi,
    As all of these solutions were added without editing any theme files you should have no issues updating.
    * I just looked back again and see the facebook translation was done editing: /wp-content/themes/enfold/includes/helper-social-media.php
    So since you can’t override a helper function inside a child theme. The override will only work for template files such as the header.php, loops, templates etc. You can copy the whole “social icon builder” function in your child theme functions.php.

    
    if(!class_exists('avia_social_share_links'))
    {
    	class avia_social_share_links
    	{
    		var $args;
    		var $options;
    		var $links = array();
    		var $html  = "";
    		var $title = "";
    		var $counter = 0;
    		
    		/*
    		 * constructor
    		 * initialize the variables necessary for all social media links
    		 */
    
    		function __construct($args = array(), $options = false, $title = false)
    		{
    			$default_arguments = array
    			(
    				'facebook' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://www.facebook.com/sharer.php?u=[permalink]&t=[title]" , 'label' => __("Share with child theme",'avia_framework')),
    				'twitter' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[shortlink]"),
    				'gplus' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "https://plus.google.com/share?url=[permalink]" , 'label' => __("Share on Google+",'avia_framework')),
    				'pinterest' => array("encode"=>true, "encode_urls"=>true, "pattern" => "http://pinterest.com/pin/create/button/?url=[permalink]&description=[title]&media=[thumbnail]"),
    				'linkedin' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://linkedin.com/shareArticle?mini=true&title=[title]&url=[permalink]"),
    				'tumblr' 	=> array("encode"=>true, "encode_urls"=>true, "pattern" => "http://www.tumblr.com/share/link?url=[permalink]&name=[title]&description=[excerpt]"),
    				'vk' 		=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://vk.com/share.php?url=[permalink]"),
    				'reddit' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://reddit.com/submit?url=[permalink]&title=[title]"),
    				'mail' 		=> array("encode"=>true, "encode_urls"=>false, "pattern" => "mailto:?subject=[title]&body=[permalink]", 'label' => __("Share by Mail",'avia_framework') ),
    			);
    			
    			$this->args = apply_filters( 'avia_social_share_link_arguments', array_merge($default_arguments, $args) );
    			
    			if(empty($options)) $options = avia_get_option();
    			$this->options 	= $options;
    			$this->title 	= $title !== false? $title : __("Share this entry",'avia_framework');
    			$this->build_share_links();
    		}
    		
    		/*
    		 * filter social icons that are disabled in the backend. everything that is left will be displayed.
    		 * that way the user can hook into the "avia_social_share_link_arguments" filter above and add new social icons without the need to add a new backend option
    		 */
    		function build_share_links()
    		{
    			$thumb 					= wp_get_attachment_image_src( get_post_thumbnail_id(), 'masonry' );
    			$replace['permalink'] 	= !isset($this->post_data['permalink']) ? get_permalink() : $this->post_data['permalink'];
    			$replace['title'] 		= !isset($this->post_data['title']) ? get_the_title() : $this->post_data['title'];
    			$replace['excerpt'] 	= !isset($this->post_data['excerpt']) ? get_the_excerpt() : $this->post_data['excerpt'];
    			$replace['shortlink']	= !isset($this->post_data['shortlink']) ? wp_get_shortlink() : $this->post_data['shortlink'];
    			$replace['thumbnail']	= is_array($thumb) && isset($thumb[0]) ? $thumb[0] : "";
    			$replace['thumbnail']	= !isset($this->post_data['thumbnail']) ? $replace['thumbnail'] : $this->post_data['thumbnail'];
    			
    			$replace = apply_filters('avia_social_share_link_replace_values', $replace);
    			$charset = get_bloginfo('charset');
    			
    			foreach($this->args as $key => $share)
    			{
    				$share_key  = 'share_'.$key;
    				$url 		= $share['pattern'];
    				
    				//if the backend option is disabled skip to the next link. in any other case generate the share link
    				if(isset($this->options[$share_key]) && $this->options[$share_key] == 'disabled' ) continue;
    				
    				foreach($replace as $replace_key => $replace_value)
    				{
    					if(!empty($share['encode']) && $replace_key != 'shortlink' && $replace_key != 'permalink') $replace_value = rawurlencode(html_entity_decode($replace_value, ENT_QUOTES, $charset));
    					if(!empty($share['encode_urls']) && ($replace_key == 'shortlink' || $replace_key == 'permalink')) $replace_value = rawurlencode(html_entity_decode($replace_value, ENT_QUOTES, $charset));
    					
    					$url = str_replace("[{$replace_key}]", $replace_value, $url);
    				}
    				
    				$this->args[$key]['url'] = $url;
    				$this->counter ++;
    			}
    		}
    		
    		
    		
    		/*
    		 * function html
    		 * builds the html, based on the available urls
    		 */
    
    		function html()
    		{
    			global $avia_config;
    			
    			if($this->counter == 0) return;
    			
    			$this->html .= "<div class='av-share-box'>";
    			if($this->title)
    			{
    				$this->html .= 		"<h5 class='av-share-link-description'>";
    				$this->html .= 		apply_filters('avia_social_share_title', $this->title , $this->args);
    				$this->html .= 		"</h5>";
    			}
    			$this->html .= 		"<ul class='av-share-box-list noLightbox'>";
    			
    			foreach($this->args as $key => $share)
    			{
    				if(empty($share['url'])) continue;
    			
    				$icon = isset($share['icon']) ? $share['icon'] : $key;
    				$name = isset($share['label'])? $share['label']: __("Share on",'avia_framework'). " " .ucfirst($key);
    				
    				$blank = strpos($share['url'], 'mailto') !== false ? "" : "target='_blank'";
    				
    				$this->html .= "<li class='av-share-link av-social-link-{$key}' >";
    				$this->html .= 		"<a {$blank} href='".$share['url']."' ".av_icon_string($icon)." title='' data-avia-related-tooltip='{$name}'><span class='avia_hidden_link_text'>{$name}</span></a>";
    				$this->html .= "</li>";
    			}
    			
    			$this->html .= 		"</ul>";
    			$this->html .= "</div>";
    			
    			return $this->html;
    		}
    		
    		
    		
    		
    	}
    }
    

    I tested this in my localhost child theme to ensure it wourks, search for “Share with child theme” within this code and replace with your translation.

    Best regards,
    Mike

    in reply to: Blank site after updating to 4.2.5 – need help #920839

    Hi,

    @Biggy
    thanks for your solution, I will look for this situation and report it when I confirm. Can I ask, when you had updated and this occurred, how did you update ftp or though the admin panel? and which version were you updating from? I would like to reproduce this error.

    Best regards,
    Mike

    in reply to: Blank site after updating to 4.2.5 – mwaxman1 #920838

    Hey mwaxman1,
    Thank you, I see this is a sandbox.
    Can you tell us how it was updated, ftp or though the admin panel?
    I see there is a drop-in plugin that is activate “advanced-cache.php” yet I don’t see a option to clear the cache?
    Can you give us FTP access to the sandbox?
    Your site is giving a 500 (Internal Server Error) can you upload the server error log to a dropbox link? It would be too much to post here.

    Best regards,
    Mike

    in reply to: Undefined index in Slideshow Fullscreen Shortcode #920835

    Hey Switzer,
    Thank you for sharing your solution, shall we close this then?

    Best regards,
    Mike

    Hey hombachb,
    I have not tried to add Xing to the sharing element, but I replaced one of them with Xing. Perhaps this will help you achieve your goal:
    Replace Social Share Button G+ With Xing

    Best regards,
    Mike

    Hi,
    Ich glaube, dass Sie bitten, dass, wenn Sie über FTP aktualisieren, die Wartungsnachricht wieder angezeigt wird, und die Antwort möglicherweise ist.
    Welche PHP Version verwendest du, Version 7?

    ————-

    I believe you are asking that if you update via FTP, will the maintenance message show again, and the answer is possibly.
    What PHP version are you using, version 7?

    Best regards,
    Mike

    in reply to: 4.2.5 / Woocommerce issue #920821

    Hey Keith,
    The 502 is a server error refering to Bad Gateway, WP Engine explains they have a 60-second timeout for processes
    First I’d like to ask if you have your production site up and running again, perhaps with a restore?
    Then do you want us to try to update your staging site to see and try to debug the error? If so do you have a backup of the staging site?
    Wanted to ensure we understood your request first.

    Best regards,
    Mike

    in reply to: Blank site after updating to 4.2.5 – need help #920820

    Hey CodeSamurai,
    Sorry but the domains don’t seem to be resolving with ftp2.domain.com or http://ftp.domain.com
    please check the ftp address.
    Also it seems that the wp login page is working, can we login to the admin panel?

    Best regards,
    Mike

    in reply to: Enfold contact form not working #920817

    Hey merril,
    I recommend installing WP Mail Logging plugin to see if there are any errors with your wordpress php mail, I have found this very useful in the past.
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: changing colour of social media icons #920812

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: SSL Issue #920808

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    Hey eattravelandmore,
    Wenn ich richtig verstehe, möchten Sie Enfold aktualisieren, aber es scheint zu hängen, versuchen Sie, manuell über FTP zu aktualisieren: https://vimeo.com/67209750
    Bitte benennen Sie Ihren übergeordneten Theme-Ordner von / enfold / in / enfold-old / um und laden Sie die neue / enfold / von Ihnen aktualisierte Version hoch. Warten Sie, bis der Upload abgeschlossen ist, bevor Sie sich wieder bei Ihrer Site anmelden.

    Hier sind einige Informationen für den allgemeinen “Kurz unbaufähig für geplante Wartung. Überprüfen Sie in einer Minute.” Error:
    WordPress Maintenance Mode: How Do I Get Out Of It?
    Für die “Ein automatisiertes WordPress-Update konnte nicht abgeschlossen werden” im Admin-Panel nach einem Wartungsmodus Fehler:
    What to do when WordPress Auto-Update Fails

    —- English —-

    If I understand correctly, you would like to update Enfold but it seems to be hanging, Try to update manually via FTP: https://vimeo.com/67209750
    Please rename your parent theme folder from /enfold/ to /enfold-old/ and upload the new /enfold/ from you updated version, and wait until the upload is complete before loging into your site again.

    Here is some info for the general “Briefly unabailable for scheduled maintenance. Check back in a minute.” error:
    WordPress Maintenance Mode: How Do I Get Out Of It?
    For the “An automated WordPress update has failed to complete” in the admin panel after a Maintenance Mode error:
    What to do when WordPress Auto-Update Fails

    Best regards,
    Mike

    in reply to: Custom CSS #920634

    Hey timbright,

    I tried to login but was sent to the maintenance page and couldn’t get to the admin dashboard.
    Please advise.

    Best regards,
    Mike

    in reply to: blog set up #920626

    Hi,
    1: Try this code in the General Styling > Quick CSS field:

    .blog-meta a {
    pointer-events: none!important; 
    }

    2: I added a code block to the bottom of the example page with this code:

    <script type = "text/javascript">
    jQuery('.grid-entry a').attr('target', '_blank');
    </script>

    Now the referencie/city arena logo opens in a new page.

    3: I added this shortcode for the whitespace element from the advanced layout builder:

    
    [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='']
    

    Please check.

    Best regards,
    Mike

    in reply to: Text in easy slider #920623

    Hi,
    That is because you were missing a } from the code above, I corrected and saved. It is now working.
    Please clear your browser cache and check.
    2018-03-02_214338

    Best regards,
    Mike

    in reply to: Reinstall Theme / change demo #920621

    Hi,
    Actually changing the status to “draft” would be better, then it won’t show on your site at all.
    To set a page to “draft”, first click “quick edit”
    2018-03-02_210239
    Then choose “draft” and save.
    2018-03-02_210946
    Then if you install the plugin Hide Drafts in Menus all of the pages you set to draft will be hidden from the menu for anyone not logged into your site, but you will still be able to see them and edit them for examples.
    Also anyone not logged in that trys to go to your page directly will get a “page not found” or 404, and not see the page.
    I tested this to ensure that it works with Enfold.

    Best regards,
    Mike

    in reply to: Colour section background image – hide on mobile #920617

    Hi,
    Ok, that would be a different solution as the color you want to keep is a part of the image you want to remove.
    To do this create a copy / clone of all of your color sections and place under your current sections, with the new mobile color sections having new background images that match your desired background colors.
    For each color section go to Screen Options > Element Visibility and choose “Hide on very small screens” for your current sections,
    2018-03-02_2019171
    and choose the other 3 larger screen options for your new sections.
    2018-03-02_2019172
    Also include ID’s to the “For Developers: Section ID” field for the color sections depending on when you want them to hide, for fine tunning, should it be nessary,
    2018-03-02_202847
    2018-03-02_202922

    Best regards,
    Mike

    in reply to: Stuck In Maintenance Mode #920613

    Hi,
    Your site seems to be working now, but should this happen again here are some resources:
    For the general “Briefly unabailable for scheduled maintenance. Check back in a minute.” error:
    WordPress Maintenance Mode: How Do I Get Out Of It?
    For the “An automated WordPress update has failed to complete” in the admin panel after a Maintenance Mode error:
    What to do when WordPress Auto-Update Fails

    Best regards,
    Mike

    in reply to: Colour section background image – hide on mobile #920374

    Hi,
    OK, I thought I understood :) The color sections are still there, the css only hide the background image, which left a black background.
    For example, the link in the Private Content area is to the first color section background, which is brown on the left side & a guy on the right.
    Could you create a mockup of what you would like to see? Thanks :)

    Best regards,
    Mike

    in reply to: Social Icons in Header not visible. #920338

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.
    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Text in easy slider #920336

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top #wrap_all #main .main_color.av_default_container_wrap {
        border-color: transparent!important; 
    }

    Best regards,
    Mike

    in reply to: Fehler bei Demotheme-Installation #920322

    Hi,
    Ich sehe, dass die Seiten für die Demo installiert wurden, aber die Bilder konnten nicht auf ein PHP-Timeout zurückzuführen sein.
    Sie haben auch einen 403 verbotenen Fehler für Ihre /wp-content/uploads/dynamic_avia/avia-footer-scripts-2b88aebaf20744f0ffe44610c69806e9.js
    Ich glaube, dass die Datei- und Ordnerberechtigungen möglicherweise nicht stimmen, aber Ihr Host-Steuerungsfeld, der Dateimanager zeigt die Berechtigungen nicht an und ich sehe nicht, wie FTP-Zugriff erstellt wird.
    Bitte fragen Sie Ihren Gastgeber, ob die Datei- und Ordnerberechtigungen sind:
    755 für alle Ordner und Unterordner.
    644 für alle Dateien.

    Sobald der verbotene Fehler behoben ist, würde ich empfehlen, max_execution_time auf 3000 statt 300 zu setzen,
    und Deaktivieren von JetPack.
    Dann sollten Sie in der Lage sein, die Demo erneut zu installieren.
    Bitte verwenden Sie das wp-reset-Plugin , damit sich Ihre Demoseiten nicht verdoppeln
    Bitte lassen Sie uns wissen, ob dies hilft.

    I see that the pages for the demo did install, but the images didn’t this could be due to a PHP time out.
    You also have a 403 forbidden error, for your /wp-content/uploads/dynamic_avia/avia-footer-scripts-2b88aebaf20744f0ffe44610c69806e9.js
    I believe that the file and folder permissions may be not right, but your host control panel, file manager doesn’t show the permissions, and I don’t see how to create FTP access.
    Please ask your host to check that the file and folder permissions are:
    755 for all folders and sub-folders.
    644 for all files.

    Once the forbidden error is solved, I would recommend setting your max_execution_time to 3000 instead of 300,
    and disabling JetPack.
    Then you should be able to try installing the demo again.
    Please use the wp-reset plugin so your demo pages don’t double
    Please let us know if this helps.

    Best regards,
    Mike

    in reply to: Social Icons in Header not visible. #920081

    Hey kenn_milkshakemedia,
    I see that the icons are white by default, and your page is white. Try this code at the end of your General Styling > Quick CSS field, it makes the white icons stand out by adding a gray square background, which changes to color on hover.

    .social_bookmarks li {
        background: gray !important; 
        border-radius: 4px!important; 
        margin-right: 2px!important; 
    }
    #top #wrap_all .av-social-link-facebook:hover a {
        background-color: #37589b!important; 
        border-radius: 4px!important; 
    }
    
    #top #wrap_all .av-social-link-twitter:hover a {
        background-color: #46d4fe!important; 
        border-radius: 4px!important; 
    }

    expected results
    2018-03-01_223744

    Best regards,
    Mike

    in reply to: Fehler bei Demotheme-Installation #920069

    Hey thomas-md,
    Ist dein Webhost Strato?
    Wir können Ihnen bei der Installation einer Demo behilflich sein, wenn Sie uns mitteilen, welche Demo Sie gerne hätten und den FTP-Zugang einbeziehen möchten. Ich konnte mich nicht auf Ihrer Website anmelden, aber vielleicht haben Sie gerade daran gearbeitet.

    Is your webhost Strato?
    We can assist with installing a demo if you tell us which demo you would like and include ftp access. I was not able to log into your site, but perhaps you were working on it at the time.

    Best regards,
    Mike

    in reply to: Colour section background image – hide on mobile #920068

    Hey whdsolutions,
    You could add this code in the General Styling > Quick CSS field, it will remove the background image for the sections for devices smaller that a tablet.

    @media only screen and (max-width: 767px) { 
    #overlay-section,#av_section_2,#av_section_3,#av_section_4 { background-image: none !important;
    }
    }

    As you can see each ID has a different name, if you went into each color section and gave them all the same name you code would only require one ID. But as it is today, this code should work, please try.

    Best regards,
    Mike

    in reply to: Change language of Enfold Theme Options #920061

    Hey wowalive,
    To change the language of the WordPress admin panel, and Enfold, please go to your WordPress profile and choose a language from the dropdown box.
    2018-03-01_211652

    Best regards,
    Mike

    in reply to: Problem uploading Demos #920059

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.
    For your information, you can take a look at Enfold documentation here
    and the video tutorials here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Reinstall Theme / change demo #920057

    Hi,
    I think I understand, if you set the demo pages to “private” and remove the menu links to them, You can keep them for layout review, yet no one else will see them.
    Is this what you ment?

    Best regards,
    Mike

Viewing 30 posts - 29,011 through 29,040 (of 34,921 total)