Forum Replies Created

Viewing 27 posts - 181 through 207 (of 207 total)
  • Author
    Posts
  • in reply to: Breadcrumb to new position #417087

    Hi can´t find any solutions at least the topic is closed.

    Actually I found one solution: making my self a shortcode [bread_crumb]

    function bread_crumb_func ($args = false, $id = false)
    	{
    		global $avia_config;
    
    		if(!$id) $id = avia_get_the_id();
    		
    		$header_settings = avia_header_setting();
    		if($header_settings['header_title_bar'] == 'hidden_title_bar') return "";
    		
    		$defaults 	 = array(
    
    			'title' 		=> get_the_title($id),
    			'subtitle' 		=> "", //avia_post_meta($id, 'subtitle'),
    			'link'			=> get_permalink($id),
    			'html'			=> "<div class='{class} title_container'><div class='container container_breadcrumb'>{additions}</div></div>",
    			'class'			=> 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    			'breadcrumb'	=> true,
    			'additions'		=> "",
    			'heading'		=> 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    		);
    
    		if ( is_tax() || is_category() || is_tag() )
    		{
    			global $wp_query;
    
    			$term = $wp_query->get_queried_object();
    			$defaults['link'] = get_term_link( $term );
    		}
    		else if(is_archive())
    		{
    			$defaults['link'] = "";
    		}
    		
    		//disable breadcrumb if requested
    		if($header_settings['header_title_bar'] == 'title_bar') $defaults['breadcrumb'] = false;
    		
    		//disable title if requested
    		if($header_settings['header_title_bar'] == 'breadcrumbs_only') $defaults['title'] = '';
    
    		// Parse incomming $args into an array and merge it with $defaults
    		$args = wp_parse_args( $args, $defaults );
    		$args = apply_filters('avf_title_args', $args, $id);
    
    		// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
    		extract( $args, EXTR_SKIP );
    
    		if(empty($title)) $class .= " empty_title ";
            $markup = avia_markup_helper(array('context' => 'avia_title','echo'=>false));
    		if(!empty($link)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."' $markup>".$title."</a>";
    		if(!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>".wpautop($subtitle)."</div>";
    		if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    
    		$html = str_replace('{class}', $class, $html);
    		$html = str_replace('{title}', $title, $html);
    		$html = str_replace('{additions}', $additions, $html);
    		$html = str_replace('{heading}', $heading, $html);
    
    		if(!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview())
    		{
    			$avia_config['small_title'] = $title;
    		}
    		else
    		{
    			return $html;
    		}
    	}
    add_shortcode( 'bread_crumb', 'bread_crumb_func' );
    • This reply was modified 10 years, 3 months ago by Raphael.
    in reply to: Enfold Showcase #417077

    What theme is this???

    http://heinzcluster.de/

    It´s a heavily customiced enfold!!

    in reply to: file to change locations of breadcrumbs #417052

    Hei Guys, is there a shortcode for using the breadcrumb in the avia builder.

    I thought in an older version there was this function for breadcrumb in the avia Layout Builder

    in reply to: Permalinks woocommerce Fehler oder Missverständnis? #409961

    Thanks for the answer. it is definetely not a enfold problem, it is a WPML / Woocommerce / Woocommerce WPML Problem :-(

    http://wpml.org/forums/topic/wpml-with-woocommerce-permalinks-problem/

    no solution found in the web

    in reply to: Permalinks woocommerce Fehler oder Missverständnis? #408966
    This reply has been marked as private.
    in reply to: woocommerce quantity functionality not working #402921

    MY OWN REPLY….

    In Enfld this won´t work. But I found the woocommerce-mod.js. not a huge JQuerry. And added the functionality to my clients theme helped me.
    (I hope this is ok. I use Enfold more then 10 times for clients.

    After adding the woocommerce-mod.js it worked. so in thies areas you can find the problems.

    in reply to: woocommerce quantity functionality not working #402871

    ANNOYING SAME PROBLEM.
    Not in a Enfold theme this workarpound helped me showing them again :-)
    In the Template: plugins -> woocommerce -> templates -> global -> quantity-input.php

    <div class="quantity">
    <input class="minus" type="button" value="-">
    <input type="number" step="<?php echo esc_attr( $step ); ?>" <?php if ( is_numeric( $min_value ) ) : ?>min="<?php echo esc_attr( $min_value ); ?>"<?php endif; ?> <?php if ( is_numeric( $max_value ) ) : ?>max="<?php echo esc_attr( $max_value ); ?>"<?php endif; ?> name="<?php echo esc_attr( $input_name ); ?>" value="<?php echo esc_attr( $input_value ); ?>" title="<?php _ex( 'Qty', 'Product quantity input tooltip', 'woocommerce' ) ?>" class="input-text qty text" size="4" />
    <input class="plus" type="button" value="+">
    </div>

    Read the full workaround:
    http://stackoverflow.com/questions/25942950/woocommerce-plus-and-minus-buttons

    But the functionality isn´t working only the buttons showing

    in reply to: Enfold 3.0 Update Thread #328931

    @pako69 and yigit.

    No I did not follow any steps… I have a docuemtary for my project and normally I do not have to change any thing.
    But ok. the onliest thing what happend was a border in the header.
    And my delf made width was deleted, because I use a smaller Size for my project!
    So I had to use max-width:XXX to fix the problem and change:
    .responsive .container .nine.units { … }in to .container .av-content-small.units { }`

    
    /* #Desktop - Large
    ============================================= */ @media only screen and (min-width: 1140px) {
    .responsive .container {  ...  }
    .container .av-content-small.units {  ...  }
    

    http://reifen-roller.de/reifenservice-kfz-bietigheim

    in reply to: Enfold 3.0 Update Thread #328824

    Hei,

    it’s soo bad, that you always (or so often) change the css classes in the HTML structure.
    So it´s impossible to use a child theme, or I have to look twice after a update, what is going on with my structure :-( miiii

    Is it aaaaalways necessary to update a enfold, or is it possible to run older enfoldthemes (so not updating them). ???

    in reply to: Enfold Showcase #306270

    This looking like a lot of work above all to include the icons in the menu

    in reply to: Enfold Showcase #305729

    Hei Guys,

    just using Enfold in many Genertions. Here you can see my customized work:

    http://www.temp-workers.de/ // XML Jobofferinclusion // Included a Dynamic Map preview (SVG)
    ——————————————-
    http://www.terminal-11.de/ // Terminal 11 – Immobilien Website // Big Design customicing
    ——————————————-
    http://www.desitherm.com // Marketingwebsite für a new Product for Siphon Desinfection (WPML included)
    ——————————————-
    http://www.reifen-roller.de // coming soon
    ——————————————-

    in reply to: Widget display: blog, pages, everywhere #305676

    heio, is this also possible to write those or similar lines in the childthemes function.php file.

    I want to have an ordered customicing.

    Can you give some hints for funtions?

    in reply to: Steps to import translation files .po #301200

    ok, thank you very much! – It´s strange and sad, probably a bug, that this string isn´t excluded (transfered) from the .po / .mo file

    in reply to: Steps to import translation files .po #300360

    sorry – i Changed the role to admin.

    – actually I change the english Words in the label with a jQuerry function!! But I want to make this without that function

    in reply to: Steps to import translation files .po #298148
    This reply has been marked as private.
    in reply to: Steps to import translation files .po #297851

    here is an EXCERPT OF THE GERMAN de.po FILE

    #: config-templatebuilder/avia-shortcodes/contact.php:288
    #@ avia_framework
    msgid “Please prove that you are human by solving the equation”
    msgstr “Bitte lösen Sie die Gleichung. Diese Maßnahme dient der Abwehr von Spam.”

    ///////
    The german files are found, everything semes to work fine, but this string is not translating by itself.
    -> not translating by itself

    //// I tried searchung the string with Codestyling Lokalisator
    -> nothing found

    !!! I don´t want to use special functions to earch this string and replace it when it is allready translated !!!!

    Can you help?

    in reply to: Steps to import translation files .po #297836

    One question to these mo / po files.

    I also tried to use “poedit” and as well the wordpress extension.
    When I generated a .mo file, it look quite different to the .mo files from original enfold .. Why is taht like that?

    secondary nothing changed, when I change or kill the .mo files???

    // I want to have the English strings in the contactform translated !!

    in reply to: Major problems with WooCommerce #294980

    No I don´t use it – I mean to don´t see any functions in WordPress.

    I just cleared it with the following:
    // require_once( ‘config-bbpress/config.php’ ); //compatibility with bbpress forum plugin
    // require_once( ‘config-woocommerce/config.php’ ); //compatibility with woocommerce plugin

    Becuse in my newes works with Enfold I try to cleanup a little bit mor to have a faster page speed!!!!!

    in reply to: Major problems with WooCommerce #294310

    Hei – I love the Integration of Woocommerce, but::::

    Is their a hook, filter or action to completely remove the Woocommerce functionalities??
    I think it makes uploads – and tWordpress a little bit faster – so I woill completely remove it from the Theme.

    in reply to: Enfold Showcase #271079

    Here is my Work all done with the Enfold theme and sometimes heavily customized /
    you can not see the Theme any more ;-)

    http://www.temp-workers.de
    http://www.terminal-11.de
    ip2c.de
    desitherm.com

    I want to give youthe idea to customize the Navigation Sticky bar. Maybe you can add the effect that when the user scrolls down – the navigation hides / when he scrolls up the navi appears?? could be a cool feature like in the particle theme http://www.bluthemes.com/themes/?theme=particle

    • This reply was modified 11 years, 1 month ago by Raphael.
    in reply to: One Page Portfolio & Apple Mobile Devices #246939

    Thanks very much.
    seemed to be that I´m running the latest version? I use the api Key and the themeforest connection.
    Should I download and upload by hand?

    in reply to: One Page Portfolio & Apple Mobile Devices #246136

    I have IOS 6.1.3 – Still my site and the Enfold site isn´t working (no link on the website is clickable)

    http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/

    in reply to: Google maps Widget – Bug #235596

    no worries, not any of wordpress integrated maps are shown on Google Chrome – still funny??

    http://themeforest.net/item/nevia-responsive-multipurpose-wordpress-theme/4118819
    http://purethemes.wpengine.com/demo/?theme=nevia (hosted on WPengine)

    So I decided to stop using Google Maps // why not :-D

    in reply to: Google maps Widget – Bug #235429

    THis is a stupid Chrome Bug, I have as well on any other Site using maps. I will stop Using Gooogle Maps, this s stupid as hell.
    They changing every week their settings. Aaaaah

    in reply to: Google maps Widget – Bug #235426

    Hi there just found another Bug my client has a Problem by showing the Google maps.

    If he want to open the Contact Site: http://www.terminal-11.de/kontakt/
    The following Failure appears:
    “The Google Maps API server rejected your request. The ‘sensor’ parameter specified in the request must be set to either ‘true’ or ‘false’.”

    – – – – – – – –
    The Screenshot of Chrome is here: ip2c.de/Bildschirmfoto 2014-03-11 um 11.44.53.png
    You can see nothing is shown.

    in reply to: PAge Speed, Load Time and Code? #230098

    Thanks for this one, in that case I will leave it (But still not know if it is good for the website and SEO) because a slow website is also not good for Google.

    Anyway I tried many different CSS and JS minifiers and plugins but theyare not working. And the BWPminifier not working.

    One thing – can I remove the querry strings in Javascripts and Css ?? That would change a lot!!
    example, making this:
    http://www.terminal-11.de/_wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/js/layerslider.transitions.js?ver=4.6.3
    to that:
    http://www.terminal-11.de/_wordpress/wp-content/themes/enfold/config-layerslider/LayerSlider/js/layerslider.transitions.js

    And can I remove certain js or css files which I don´t need?

    —————————————————————————-
    Caching Plugins overview:
    – WP-Cache.com – has the best results for me
    – WP Super Cache – many options noot many results?
    – Better WordPress Minify – makes problems, to minify CSS and JS
    – W3 Total Cache, was the best – for other sites with Enfold but with the Layerslider it makes a bit problems in my newest project
    – WP-Cache.com – has the best results for me!!

    in reply to: Google maps Widget – Bug #229685

    The Site is here:

    http://www.terminal-11.de/_wordpress/kontakt/
    The Empty Field should normally show the Google maps

Viewing 27 posts - 181 through 207 (of 207 total)