Is there possible to change the default setting for "Apply link to the image?" to "no link" ?
Find it a bit tedious to change it for every portfolio item :-)
Thanx!
Is there possible to change the default setting for "Apply link to the image?" to "no link" ?
Find it a bit tedious to change it for every portfolio item :-)
Thanx!
Hi,
I believe that would require a change to the framework files. Let me tag the rest of the support team to see if they can give you instruction.
Regards,
Mya
If possible i would like to change the default position of the caption as well as that would save me a lot of time when uploading larger number of files into a portfolio.
Thanx!
Regards
Paul L.
Hi,
You can open includes > admin > register-admin-metabox.php then find this code
"subtype" => array('No link'=>'','Open Lightbox when clicked'=>'lightbox','Link to this Post'=>'self','Link to Page'=>'page','Link to Category'=>'cat','Link manually'=>'url'),
Replace it with
"subtype" => array('No link'=>''),
Note: This will remove any other options.
Regards,
Ismael
Hi!
Is there a way to just change the default and not remove the other options ?
If not ill live with the extra time it takes to change them. :-)
Thanx!
Hello,
Please ignore the solution I gave you. Follow this instead
Find this code
"std" => "self",
"no_first" => "true",
"subtype" => array('No link'=>'','Open Lightbox when clicked'=>'lightbox','Link to this Post'=>'self','Link to Page'=>'page','Link to Category'=>'cat','Link manually'=>'url'),
Replace it with this
"std" => "No Link",
"no_first" => "true",
"subtype" => array('No link'=>'','Open Lightbox when clicked'=>'lightbox','Link to this Post'=>'self','Link to Page'=>'page','Link to Category'=>'cat','Link manually'=>'url'),
Regards,
Ismael
Thanx that worked!
Is there a similar way to change the default "left frame" position of the caption to default "bottom frame" position instead ?
Regards
Paul L.
Hi,
Open up the same file then find this code
array(
"name" => "Caption Style and Position?",
"desc" => "",
"id" => "caption_position",
"type" => "select",
"std" => "caption_left caption_left_framed caption_framed",
"slug" => "media",
"no_first" => "true",
"class" => "av_2columns av_col_1",
"subtype" =>
array( 'right framed'=>'caption_right caption_right_framed caption_framed',
'left framed'=>'caption_left caption_left_framed caption_framed',
'bottom framed'=>'caption_bottom caption_bottom_framed caption_framed',
'right without frame'=>'caption_right',
'left without frame'=>'caption_left',
'bottom without frame'=>'caption_bottom',
Replace it with
array(
"name" => "Caption Style and Position?",
"desc" => "",
"id" => "caption_position",
"type" => "select",
"std" => "caption_bottom caption_bottom_framed caption_framed",
"slug" => "media",
"no_first" => "true",
"class" => "av_2columns av_col_1",
"subtype" =>
array( 'right framed'=>'caption_right caption_right_framed caption_framed',
'left framed'=>'caption_left caption_left_framed caption_framed',
'bottom framed'=>'caption_bottom caption_bottom_framed caption_framed',
'right without frame'=>'caption_right',
'left without frame'=>'caption_left',
'bottom without frame'=>'caption_bottom',
Regards,
Ismael
Worked like charm! Thanx!
This topic has been closed to new replies.