Support Forums - Classified Ads Script Osclass
Osclass theme support => Veronika Osclass Responsive Theme => Topic started by: votresiteweb on May 06, 2017, 10:26:07 PM
-
Hello how to open the url link that is in "custom field" in a new window
-
It this url under :
LISTING -》CUSTOM FIELDS ?
-
Hi Ivanko,
Yes exactly :)
When I create a custom field in URL it does not open in a new window.
How to change this?
Thank you :) ;) :D
-
Then you need to modify core.
In /oc-includes/osclass/helpers/hItems.php
below:
/***************
* META FIELDS *
***************/
find:
if(stripos(osc_field(osc_item_meta(), 's_value', ''),'http://')!==false || stripos(osc_field(osc_item_meta(), 's_value', ''),'https://')!==false) {
return '<a href="'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'" >'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'</a>';
} else {
return '<a href="http://'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'" >'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'</a>';
replace with:
if(stripos(osc_field(osc_item_meta(), 's_value', ''),'http://')!==false || stripos(osc_field(osc_item_meta(), 's_value', ''),'https://')!==false) {
return '<a href="'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'"target="_blank" >'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'</a>';
} else {
return '<a href="http://'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'"target="_blank" >'.html_entity_decode(osc_field(osc_item_meta(), 's_value', ''), ENT_COMPAT, "UTF-8").'</a>';
-
Hi Ivanko,
Thank you very much for your assistance, but the code not work :'( :'( :'( :'( :'(
The site no longer works when I change this line
the code don't work is it possible to check that please :)
;)
-
Try one more time now
-
Thank you Ivanko but :'( :'( :'( :'( :'( :'( that's don't work :'( :'( :'( :'(
-
There was unnecessary extra space.
Try again, I corrected.
replace exactly only those lines.
-
:'( :'( :'( :'( :'( :'( :'( :'( that's don't work my friend :'( :'( :'( :'( :'( :'( :'( :'(
I did well as requested :'( :'( :'( :'( :'( :'( :'( :'(
-
you just need to ad " target="_blank" in two places
where you have:
ENT_COMPAT, "UTF-8").'" >
change with:
ENT_COMPAT, "UTF-8").'" target="_blank">
-
Hi my friend, perfect that's work ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D ;D
-
in config.php, change base url to https://