Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #493374

    Hi guys,

    This is not a big issue or urgent, but I would like to resolve it. In Portfolio I have used Custom Element -> Blog Post with Custom Taxonomy (chosen: Product Tag) to display related products. The feature is fantastic, but I am getting phantom “simple” english word in a results (underlined red). I cannot find “simple” in updated .po file to translate it. Please advise how to translate or just completely remove “simple” from the text.
    Many thanks in advance, regards,
    Ivan

    #493912

    Hey videogame!

    Thank you for using Enfold.

    Add this in the functions.php file to remove the product type tag:

    add_filter( 'avf_exclude_taxonomies', 'enfold_customization_exclude_taxonomies', 0, 2 );
    function enfold_customization_exclude_taxonomies( $t, $pt ) {
    	$t[] = 'product_type'; 
    	return $t;
    }

    If it’s not working, please post the link to the site.

    Cheers!
    Ismael

    #493962

    Hey Ismael,
    This is working, I do not miss “simple” at all. Thank you!
    I have another (new, after update) problem with Gallery Media Element. If I place two gallery elements, one after another on portfolio page, I am getting strange results. That is new, gallery worked previously. I have tried to deactivate all plugins except woocommerce but still no change. Please check and advise.
    Cheers,
    Ivan

    PS. Should I open a new ticket for this one?

    #494609

    Hi!

    Did you install any lighbox plugin? This css code breaks the gallery:

    .lightbox {
      position: absolute !important;
      left: 0;
      width: 100%;
      z-index: 10000;
      text-align: center;
      line-height: 0;
      font-weight: normal;
    }

    Try to add this in the Quick CSS field:

    .lightbox {
      position: relative !important;
    }

    Best regards,
    Ismael

    #494683

    Hey Maestro!
    Your code is working, thank you!
    Regards,
    Ivan

    #495180

    Hi,

    Glad you got it fixed and thanks for the feedback, much appreciated!

    Thanks,
    Rikard

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.