Viewing 3 reply threads
You must be logged in to reply to this topic.
The theme supports custom fields for the portfolio which can be added here;
/wp_admin > Specular > Portfolio config > Custom fields Parameters (Create unlimited custom fields. Add values in respetive single portfolio)
Once added here, they can be filled here;
Portfolio items > Add new > Single Portfolio Options > Custom Fields > Custom field values
Once saved, they will show up in the front-end. Cool!
Problem is that it’s just showing blank fields in the back-end… So while creating a new item i’m not sure which field i’m filling in unless i check the config or just save and check in the front-end. Shouldn’t the labels of the config be shown here?
Yes, you’re right.
Please update this function on functions-specular.php
function codeless_getPortfolioFields(){
$cl_redata = get_option( 'cl_redata' );
$description_fields = '';
if($cl_redata['single_portfolio_custom_params'] ):
for($i = 0; $i < count($cl_redata['single_portfolio_custom_params']); $i++):
$description_fields .= ($i+1).". ".$cl_redata['single_portfolio_custom_params'][$i]."<br /> ";
endfor;
endif;
return $description_fields;
}
We will add on the update list
Thank You
Thanks! Works like a charm!
Still, now it shows a sum up of all the fields, and you need to manually add the fields on the right side.
Would be a bit more user-friendly if the fields just show up once they’re in the config, or at least show the correct placeholder in each field. Since i use alot of fields , now i need to count which field i’m at…
Suggestion: Maybe consider changing it in the update :)
Thanks so far, topic resolved for now!
Thank You, yes we will fix it on next update for sure!
Best Regards
You must be logged in to reply to this topic.