Support Forums - Classified Ads Script Osclass
General osclass questions => General discussion => Topic started by: mujeresenlinea on February 09, 2021, 11:57:46 PM
-
Hello friends. I have Osclass v4.3.2 and used Beta Osclass Theme 1.3.0. When the user create a new classified in the editor TinyMCE
POWERED BY TINY the option right-clicking does not work, as does pressing and holding on the mobile device screen.
The option that appears is to create a link. How can I enable this right click or hold button copy and paste option? See image atacched. Thanks.
-
@mujeresenlinea
I am pretty sure CTRL+V, CTRL+C will work properly.
There are different "plugins" you can use in tinymce but we try to keep list as short as possible.
-
Yes, the funtion CTRL+V, CTRL+C it's okey. But click right or on mobile devices, pressing and holding the screen does not enable the normal drop-down menu.
How can I customize tinymce to enable those options. I leave you the link of the web in question.
https://mujeresenlinea.com/item/new
The only thing I'm using as an editor is the one included in the Beta theme, since if I enable the Rich Edit Plugin 1.2.0 plugin, it doesn't work in the Beta theme either.
Please help me, I'm losing traffic.
-
@mujeresenlinea
I have no idea how you could lose trafic because of right click in tinymce editor but ok.
https://stackoverflow.com/questions/17147771/tinymce-right-click-paste-mouse-enable/40288226
Regarding code for TinyMCE in osclass, you must search in core files, could be frm files, functions.php or utils.php, do not remember now.
-
Thanks for your help. It is simple if there are no new ads, people will not find new material, so they stop using the web or enter and exit quickly so the bounce rate increases and implies less retention.
My biggest concern is with smartphone users, as they cannot right click paste. It turns out that 70% of our ads, due to the sexual nature of our website, are made from cell phones and are regularly texts that they had previously saved and are only copied, pasted and new photos are uploaded.
Could you help me with something else. Could you try to remember which Osclass Core file should be modified, I really appreciate that. This unforeseen came out after updating to Osclass 4.3 since it did not have this difficulty before.
-
Yes, the funtion CTRL+V, CTRL+C it's okey. But click right or on mobile devices, pressing and holding the screen does not enable the normal drop-down menu.
How can I customize tinymce to enable those options. I leave you the link of the web in question.
https://mujeresenlinea.com/item/new
The only thing I'm using as an editor is the one included in the Beta theme, since if I enable the Rich Edit Plugin 1.2.0 plugin, it doesn't work in the Beta theme either.
Please help me, I'm losing traffic.
Thanks for you help. Solved in my case. Modified the file functions.php in the folder oc-includes/osclass and in line 440 function "osc_tinymce_item script" after code: "plugins : [" remove parameter "link".
before:
plugins : [
"advlist autolink lists link image charmap preview anchor",
after:
plugins : [
"advlist autolink lists image charmap preview anchor",
Remove the option: "link"
And i solved for me. Thanks MB Themes
-
@mujeresenlinea
Glad to hear that ;)
... btw I do not see any change comparing "before" and "after"
-
@mujeresenlinea
before:
plugins : [
"advlist autolink lists link image charmap preview anchor",
after:
plugins : [
"advlist autolink lists link image charmap preview anchor",
What is the second option that applies. What you write is the same as the first choice?
-
Yes it works this way but so there is no possibility for placing a link
-
Ok, the other solution is add this line
contextmenu: false,
In the file functions.php after line:
relative_urls : false,
Solved for me.
-
Thanks for feedback ;)