Hi,
Even I received a similar email from openbugbounty.org. Here are the contents of the email:
—————————–
Dear IT Security Team,
This is a notification email about a security vulnerability on your website – completewellbeing.com
A security researcher has reported it via coordinated disclosure Open Bug Bounty program: https://www.openbugbounty.org/reports/279741/
We verified and confirmed that the vulnerability exists and is exploitable. To keep your website safe and prevent exploitation of the vulnerability while it’s unpatched, technical details are not publicly visible during at least 30 days, and 90 days if the vulnerability is unpatched. Please contact the security researcher directly for further details and assistance: https://www.openbugbounty.org/researchers/npuser500/
You can also customize your vulnerability notification alerts to send them directly to right people in your organization: https://www.openbugbounty.org/email-alerts/
If you received this notification by error, please accept our apologizes and forward it to your IT security team, or a person in charge of your website security.
Have a nice day and stay secure,
OpenBugBounty Team
Making Web Safer
DISCLAIMER: The Open Bug Bounty project (www.openbugbounty.org) has no direct or indirect relations with security researchers. Our sole mission is to verify submissions and notify website owners as soon as possible in order to keep their websites safe.
———————————–
As per Bogdan’s response, the vulnerability will be patched in the next upgrade. So as I understand, we stay put and take no action right now. Is that correct?
Dear Catalin,
Let me see if I understand correctly.
I am not referring here to the mobile bar but to the size of the logo…how is it that the “Newspaper Fashion” logo is not visible properly in the mobile size? Only part of the logo is visible in mobile version? Is that the style of the theme?
In my opinion, it should display the mobile logo instead of the desktop logo—just my suggestion.
I still think that for header style 9 and above, the theme must display mobile logo because otherwise the logo may not be seen fully on mobile screens.
Thanks!
Manoj
Catalin,
I can see the problem that I have described even on the demo page of tagdiv
http://demo.tagdiv.com/newspaper_fashion/
Check this in mobile size and you will see that the header logo doesn’t resize to fit mobile—in fact is spilling out of the screen. This is the problem in header styles 9, 10, 11 and 12.
Ideally, for mobile, the header should take the mobile size.
I would suggest that it be corrected in the upcoming update.
Thanks.
Dear Catalin
Yes, that’s because on Saturday I worked on the header with my colleague—we made some css changes. But what we notice is that in the header style with full logo [style 9 upwards], the mobile logos don’t show on the mobile screens. That seems to be a bug because when a mobile logo has been provided, the theme should show it. For mobile, it should show 280×96 for retina and 140×48 for normal screens. Instead, it is showing the size 544×180, which is meant for desktops. You can see in the screenshot you sent to me –> http://screencast.com/t/bzGwqyTB
Could you please address this bug in your next release?
Please see how style 1 (default) works on desktop –> http://www.screencast.com/t/Z7FpEBjyw0w
The same work perfectly fine on mobile too –> http://www.screencast.com/t/xH9Dcvcs
Now if you see style 9, it looks fine on desktop –> http://www.screencast.com/t/TOMC0E8FRX
But it doesn’t change size of logo on mobile; also, the toggled menu appears below –> http://www.screencast.com/t/8xlL33iR
Since the logo size for both styles is the same on desktop, it should look the same on mobiles too. But what’s happening is that in style 9, the logo on mobile is not small and the menu goes down, making it look odd. I would
like it to look like the way style 1 [default] looks on mobile –> http://www.screencast.com/t/xH9Dcvcs
Hi, I have deactivated all plugins except visual composer but the header style 9 still doesn’t render properly on mobile. Please check http://staging.completewellbeing.com
Thanks Bogdan!
I have one more query. I wanted to make some changes to a particular block but I don’t want to change the original block. I would like to save the block with a new name and make changes in the new block. Can you guide me on how I can add a new block, create the shortcode and register the block?
Hi Bogdan
I did as you suggested—deactivated all plugins except visual composer. It still doesn’t work! Could you help?
Manoj
Can you suggest what edits we have to make in the author function and authors box?
I have managed to show the authors on the article with two authors but it doesn’t work on the articles which have a single author [The link to author archive doesn’t work]
Also, in the author box with two authors, I managed to show the two authors but again, the link to author archive doesn’t work.
The code I used to make it work below article title is
<?php
if (td_util::get_option(‘tds_p_show_author_name’) != ‘hide’) {
//echo $td_mod_single->get_author();
$coauths = get_coauthors();
if (count($coauths) > 1) {
echo “by “;
foreach ($coauths as $key => $coauth) {
echo ‘user_nicename . ‘”>’ . $coauth->display_name . ‘‘;
// add “and”
if ($key != count($coauths)) {
echo ‘ and ‘;
$coauths = substr($coauthsHTML, 0, -4);
}
}
} else {
echo $td_mod_single->get_author();
};
}?>