Adi Coscai
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Woocommerce product variation option missingHi! Do you have the price and stock for all variation?
Can you provide a link with the product from the image above please?Thank you 🙂
Forum: Developing with WordPress
In reply to: Multisite With Different Domain Or New Website?Hi! I think the best choise (for SEO) will be a separate domain. You can ask you hosting provider if they allow you to host multiple domains whitout extra fees.
Hope this helps 🙂
Forum: Fixing WordPress
In reply to: Adding text to the Mobile site onlyHi! You can add some custom HTML provided by flatsome theme (HTML 1, HTML 2, etc) .
You can use foe example :<span class="only-on-mobile"> phone number </span>with the following style
@media(max-width: 780px){ .only-on-mobile{ display: block; } @media(min-width: 782px){ .only-on-mobile{ display: none; }Hope this helps 🙂
Forum: Fixing WordPress
In reply to: After customizing menu, the sub-menu is broken, who can help me?Happy to hear that 🙂
Best regards!
Forum: Fixing WordPress
In reply to: After customizing menu, the sub-menu is broken, who can help me?Hi!
Can you provide a link with the webiste? I have to use inspect elements to see what’s wrong 😀Forum: Fixing WordPress
In reply to: Fixing the text color of widget in footer of pageHi!
You can try this CSS code:#bottom h3.widgettitle { color: #fff!important; }or
.cmsmasters_color_scheme_first h3.widgettitle { color: #fff!important; }Hope this helps 🙂
Forum: Fixing WordPress
In reply to: how do i make the mobile logo bigger?Hi!
I just notice the following CSS code:.site-branding { float: left; margin-bottom: 0; width: calc( 100% - 120px); }If you want to make the logo bigger (80% width) you can make the site-branding 100% width.
You code for this will be something like this:
@media screen and (max-width: 768px) { .site-branding { width: 100%; } }If it’s not working you can try to add !important
Hope this helps 🙂
RegardsForum: Fixing WordPress
In reply to: http errorHi! According to this message:
orestone.net redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTSYour website is in a redirect chain/ loop (kind of). This mean you have some redirect rules like:
1 – x redirect to y
2 – y redirect to xor more practical example:
1 – http redirect to https
2 – non www https redirect to www with httpYou can check your .htaccess file for these.
I don’t know if any of this apply to you but hope this helps 🙂
RegardsForum: Fixing WordPress
In reply to: Menu burger in siteHi!
I think that they use this plugin https://wordpress.org/plugins/wp-responsive-menu/ or something similar.Hope this helps 🙂
Regards.Forum: Fixing WordPress
In reply to: How to Prevent WordPress from Generating Image SizesHi 🙂 you can check this guide – https://www.wpbeginner.com/wp-tutorials/how-to-prevent-wordpress-from-generating-image-sizes/
Hope this helps 🙂
Regards 🙂Forum: Fixing WordPress
In reply to: After customizing menu, the sub-menu is broken, who can help me?You welcome 🙂
You can change the post status to solved 😀Regards!
Forum: Fixing WordPress
In reply to: After customizing menu, the sub-menu is broken, who can help me?You welcome!
You can add this code:.sticky-navigation-logo { position:absolute; left:49% }Hope this helps 🙂
Forum: Fixing WordPress
In reply to: Error establishing a database connectionYou welcome 🙂
Forum: Fixing WordPress
In reply to: Cant delete menu itemsHi! I had this problem once. In my case, the problem was that I edited the database (th sql file using text editor). Anyway it’s seems to be a privillage issue. Check the user privillage for database (I’m doing this from Cpanel).
Hope this helps 🙂Forum: Fixing WordPress
In reply to: Error establishing a database connectionHi! Did you migrate your website from other domain or from localhost? Or what you did before you notice this?
I will suggest to check the wp-config.php to see if the database name / user / password are correct 🙂