Osclass forums

Support forums => Themes => Modern => Topic started by: Pigeon on August 05, 2015, 07:33:25 am

Title: Please Somebody Helps Us To Solve This Topic
Post 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
Title: Re: mark
Post by: teseo on August 05, 2015, 11:46:38 pm
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:

Code: [Select]
                        <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>&nbsp;
                        </p>

That </span>&nbsp; does the trick.

Regards
Title: Re: mark
Post by: Pigeon on August 06, 2015, 05:11:09 am
Thank you teseo
you are the first one that help people here
Title: Re: mark
Post by: teseo on August 06, 2015, 05:26:05 am
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
Title: Re: mark
Post by: Pigeon on August 07, 2015, 08:17:08 am
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
Title: Re: Bug in Mark As in Chrome/Opera [Solved]
Post by: teseo on August 07, 2015, 01:08:26 pm
Same trick works here as well:

Code: [Select]
                    <ul>
                        <?php $i 0;  ?>
                        <?php while ( osc_has_web_enabled_locales() ) { ?>
                            <li <?php if( $i == ) { 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>&nbsp;

</ul>&nbsp;

Regards
Title: Re: Bug in Mark As in Chrome/Opera [Solved]
Post by: Pigeon on August 08, 2015, 12:27:56 am
Same trick works here as well:

Code: [Select]
                    <ul>
                        <?php $i 0;  ?>
                        <?php while ( osc_has_web_enabled_locales() ) { ?>
                            <li <?php if( $i == ) { 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>&nbsp;

</ul>&nbsp;

Regards

no teseo, it does not work for language. please test it yourself and see.
Title: Re: Bug in Mark As in Chrome/Opera [Solved]
Post by: teseo on August 08, 2015, 12:32:09 am
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
Title: Re: Bug in Mark As in Chrome/Opera [Solved]
Post by: Pigeon on August 08, 2015, 04:37:26 am
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
Title: Re: Bug in Mark As in Chrome/Opera [Solved]
Post by: Pigeon on August 08, 2015, 09:51:20 am
just remind you that language menu also works in internet explorer and Firefox, but with chrome and opera not.

Thank You
Title: Re: Please Somebody Helps Us To Solve This Topic
Post by: Pigeon on September 04, 2015, 07:51:29 am
 :-[
Title: Re: Please Somebody Helps Us To Solve This Topic
Post by: SmaRTeY on September 04, 2015, 11:54:34 am
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