• Katie

    (@greenpeadesign)


    Hi,

    The Homepage Layout ‘Select page layout. This will only be applied to the home page.’ has three layout options – however none of the layout images are showing.

    They are inside admin/main/assets/img folder, and the path to this folder is broken.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author ThinkUpThemes

    (@thinkupthemes)

    Hi Katie,

    Thanks for getting in touch. The images seem to be working on our end. Are you getting this error on the main theme? or whilst using a child theme?

    Are you able to select any of the options, even thought the image link is broken?

    Thanks again for letting us know, and we’ll get this sorted asap!

    I have been using the ThinkUp Slider just fine for the last couple days as part of the Minamaze theme but all of a sudden now I cannot add slides when I click on the add slide button under homepage under theme options. I’m assuming something is corrupt. Please advise as I would like to use this slide vs. other custom ones. Great Theme BTW!

    Thread Starter Katie

    (@greenpeadesign)

    I’m using as a main theme. Nothing seems to happen when I select the options.

    Thread Starter Katie

    (@greenpeadesign)

    This issue is present with all post layouts within the admin panel.

    I can get the images to display by changing the image path from “REDUX_URL.’assets/img/example.png'” to
    “get_template_directory_uri() .’/admin/main/assets/img/example.png'”

    Here is an example from line 1134 onwards:

    'options' => array(
    	'option1' => array('alt' => '1 Column', 'img' => REDUX_URL.'assets/img/1col.png'),
    	'option2' => array('alt' => '2 Column Left', 'img' => REDUX_URL.'assets/img/2cl.png'),
    	'option3' => array('alt' => '2 Column Right', 'img' => REDUX_URL.'assets/img/2cr.png'),
    	),

    changed to

    'options' => array(
    	'option1' => array('alt' => '1 Column', 'img' => get_template_directory_uri() .'/admin/main/assets/img/1col.png'),
    	'option2' => array('alt' => '2 Column Left', 'img' => get_template_directory_uri() .'/admin/main/assets/img/2cl.png'),
    	'option3' => array('alt' => '2 Column Right', 'img' => get_template_directory_uri() .'/admin/main/assets/img/2cr.png'),
    ),

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Homepage Layout – layout images not showing’ is closed to new replies.