Osclass forums
Support forums => Themes => Modern => Topic started by: Pigeon on August 05, 2015, 07:33:25 am
-
hi guys
theme: modern
as you see in attached picture, when i click my mouse on (Mark as), that white label appears for reporting spam, but when i want to move my mouse on it, it disappears and can not click on spam. how can i fix it?
by the way: in chrome and opera it does not work, but in internet explorer and Firefox it works good.
thank you
-
Hi,
It's a Chrome/Opera issue interpreting Javascript, but after a while struggling with JS, I've found the cheapest solution ever, :D just insert a space after the span with the Report options:
item.php:
<p id="report">
<strong><?php _e('Mark as', 'modern'); ?></strong>
<span>
<a id="item_spam" href="<?php echo osc_item_link_spam(); ?>" rel="nofollow"><?php _e('spam', 'modern'); ?></a>
<a id="item_bad_category" href="<?php echo osc_item_link_bad_category(); ?>" rel="nofollow"><?php _e('misclassified', 'modern'); ?></a>
<a id="item_repeated" href="<?php echo osc_item_link_repeated(); ?>" rel="nofollow"><?php _e('duplicated', 'modern'); ?></a>
<a id="item_expired" href="<?php echo osc_item_link_expired(); ?>" rel="nofollow"><?php _e('expired', 'modern'); ?></a>
<a id="item_offensive" href="<?php echo osc_item_link_offensive(); ?>" rel="nofollow"><?php _e('offensive', 'modern'); ?></a>
</span>
</p>
That </span> does the trick.
Regards
-
Thank you teseo
you are the first one that help people here
-
You're welcome. :)
Would you mind changing the title of this thread to something more descriptive, such as "Bug in Mark As in Chrome/Opera [Solved]"? Thanks.
Regards
-
You're welcome. :)
Would you mind changing the title of this thread to something more descriptive, such as "Bug in Mark As in Chrome/Opera [Solved]"? Thanks.
Regards
yes sure, teseo i have the same problem for Language, up-right there is a menu to change your Language.
i could not found span for Language to fix it.
please help us
thank you
-
Same trick works here as well:
<ul>
<?php $i = 0; ?>
<?php while ( osc_has_web_enabled_locales() ) { ?>
<li <?php if( $i == 0 ) { echo "class='first'"; } ?>><a id="<?php echo osc_locale_code(); ?>" href="<?php echo osc_change_language_url ( osc_locale_code() ); ?>"><?php echo osc_locale_name(); ?></a></li>
<?php $i++; ?>
<?php } ?>
</ul>
</ul>
Regards
-
Same trick works here as well:
<ul>
<?php $i = 0; ?>
<?php while ( osc_has_web_enabled_locales() ) { ?>
<li <?php if( $i == 0 ) { echo "class='first'"; } ?>><a id="<?php echo osc_locale_code(); ?>" href="<?php echo osc_change_language_url ( osc_locale_code() ); ?>"><?php echo osc_locale_name(); ?></a></li>
<?php $i++; ?>
<?php } ?>
</ul>
</ul>
Regards
no teseo, it does not work for language. please test it yourself and see.
-
You're right, not exactly the same case... ??? Well, I'll see if I can do something about it when I have some more time.
Regards
-
You're right, not exactly the same case... ??? Well, I'll see if I can do something about it when I have some more time.
Regards
thank you teseo, you always can ;)
we are waiting for you soon
-
just remind you that language menu also works in internet explorer and Firefox, but with chrome and opera not.
Thank You
-
:-[
-
Hi,
in my modern it both works in Opera (older version) and explorer (Edge).
Now, I am using older Opera version on purpose because Chrome (=Opera base) decided to take out some support causing issues with jquery. In your other thread about the same I posted some sort of solution with regard to be able to select the right language but I haven't seen any other issue.
Regards,
Eric