Viewing 16 posts - 1 through 16 (of 16 total)
  • Author
    Posts
  • #325055

    Hello Guys,
    please could you help me with the logo/partner element? I put it on my page and it works perfectly on my default language (czech) but I used WPML to translate my whole website into english and the element does not appear at all (only the dots for each slide).

    Here is the page where it works: http://www.rentmedakar.cz/?page_id=7011
    Here it is not: http://www.rentmedakar.cz/?page_id=8071&lang=en

    Thank you very much for any help.

    Martin

    #325268

    Hi Martin,

    Can you please create us an administrator account? post it here as a private reply.

    Regards,
    Josue

    #326170
    This reply has been marked as private.
    #326351

    Hi!

    Thank you for the info.

    Please try to regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #327109

    I did regenerate the thumbnails and nothing heppened. I also tried to create new logos to use only them for english version and still the same.

    Any other idea? :(

    Thx

    #327902

    Hey!

    I changed one of the logo image source and it shows fine. It is located on the fourth row. http://www.rentmedakar.cz/?page_id=8071&lang=en

    Did you regenerate the thumbnails here? http://www.rentmedakar.cz/wp-admin/tools.php?page=regenerate-thumbnails

    Or try to change the logo images manually.

    Best regards,
    Ismael

    #533459

    Hi,
    I have the same problem with the Partner /Logo Element and pages with a “WPML duplicate page”.

    This is the original content with the Partner/Logo Element visible on the bottom of the site http://usbflash24.de. On the duplicated page (no translation) http://usbflash24.at no pictures are visible.

    The only way to use the Partner/Logo Element with WPML is to not have a WPML Duplicate page.
    I hope there is a fix. I am using Enfold Theme 3.3.2

    Thanks
    Christian

    • This reply was modified 9 years, 6 months ago by kiki66.
    #533855

    Hi,

    Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.

    Thanks,
    Rikard

    #533914

    Hi Rikard,
    here is the login is in the private content

    Christian

    #534567

    Hi Christian,

    Could you try to update to the latest version, 3.4.1, to see if that helps?

    Thanks,
    Rikard

    #534652

    I installed 3.4.1 – no change – same problem…

    #535974

    Hi!

    I think i managed to fix the bug, can you confirm if everything is ok?

    Best regards,
    Josue

    #541049

    Hi – yes you fixed it – but I updated to the newest release – and now it´s gone again :(
    What did you do?

    • This reply was modified 9 years, 5 months ago by kiki66.
    #541077

    Hi!

    Kriesi is aware of the issue and will probably include a fix in the near future, in the meantime, change this part in /config-templatebuilder/avia-shortcodes/logoslider.php:

    		public function set_slides($ids)
    		{
    			if(empty($ids)) return;
    
    			$this->slides = get_posts(array(
    				'include' => $ids,
    				'post_status' => 'inherit',
    				'post_type' => 'attachment',
    				'post_mime_type' => 'image',
    				'order' => 'ASC',
    				'orderby' => 'post__in')
    				);
    
    			//resort slides so the id of each slide matches the post id
    			$new_slides = array();
    			foreach($this->slides as $slide)
    			{
    				$new_slides[$slide->ID] = $slide;
    			}
    
    			$this->slides 		= $new_slides;
    			$this->id_array 	= explode(',',$this->config['ids']);
    			$this->slide_count 	= count($this->id_array);
    		}
    

    To:

    		public function set_slides($ids)
    		{
    			if(empty($ids)) return;
    
    			$this->slides = get_posts(array(
    				'include' => $ids,
    				'post_status' => 'inherit',
    				'post_type' => 'attachment',
    				'post_mime_type' => 'image',
    				'order' => 'ASC',
    				'orderby' => 'post__in')
    				);
    
    			//resort slides so the id of each slide matches the post id
    			$new_slides = array();
    			$new_ids = array();
    			foreach($this->slides as $slide)
    			{
    				$new_slides[$slide->ID] = $slide;
    				$new_ids[] = $slide->ID;
    			}
    
    			$this->slides 		= $new_slides;
    			$this->id_array 	= $new_ids;
    			$this->slide_count 	= count($this->id_array);
    		}

    Best regards,
    Josue

    #541150

    Thank you so much. This works for me! I hope Kriesi will include a fix in the coming update.

    #541296

    You are welcome, glad to help :)

    Regards,
    Josue

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