Tagged: content slider
Hi!
Doing my very first steps with Enfold. I just created a Content Slider and I’m not able to create a link to a page in a slider element. It only offers “No Link”, “Manual” and “Category” (as a sub item under “Taxonomy”). There is nothing listed under “Single Entry” (“Einzelnder Eintrag”, I’m working with a german WordPress) – but that’s where I would have expected my pages etc. to show up.
Am I getting the concepts of the slider wrong? Is it ment to be used for linking to pages etc.?
Robert
Hey pearlco!
Set it to manual and then type the link to your post out in the field.
Best regards,
Elliott
Hi Elliot,
thanks for your answer. To insert links manually is a workaround I wouldn’t like. What’s worse: Half an hour ago, Enfold started to offer pages, posts and portfolio items to link to in an interactive way. Right now, it stoppedit again.
Do you have any idea how this might happen?
Best regards,
Robert
Hey!
I think the german translation is not complete. Try to disable the translation and use the default language for the advance layout builder. Add this to the functions.php:
if(!function_exists('avia_lang_setup'))
{
add_action('after_setup_theme', 'avia_lang_setup');
function avia_lang_setup()
{
if(!is_admin())
{
$lang = apply_filters('ava_theme_textdomain_path', get_template_directory() . '/lang');
load_theme_textdomain('avia_framework', $lang);
}
}
}
Cheers!
Ismael