sumowebsite
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Superstore] Fatal error: functions.php on line 110Hey Vadym,
Thanks for your report. New version has been submitted to fix the issue. It will be available for public once approved.Forum: Themes and Templates
In reply to: [Omega] Language file available?Theme developer doesn’t have to do it. Theme Translations and Language Packs are Coming to www.remarpro.com. Please check this article below
https://wptavern.com/theme-translations-and-language-packs-are-coming-to-wordpress-org
Forum: Themes and Templates
In reply to: [Omega] How to edit Footer Copyright in Omega theme?You can find the solution to customize footer here
Forum: Themes and Templates
In reply to: [Omega] change logo linkHi,
the link in the logo is get from home_url() function. The home_url template tag retrieves the home URL for the current site. You can change it via WordPress admin > Settings > General, and find “Site Address (URL)”.The “Site Address (URL)” setting is the url you want people to type in browser to open your WordPress website. So, I’d suggest to keep it as is unless you want your site home page to be different from your WordPress installation directory.
Cheers
The style.css is not loaded. I’d suggest to reinstall the theme.
To reinstall, you need to remove the theme and add it again and activate. You can use Custom CSS plugin to modify / override the style.Forum: Themes and Templates
In reply to: [Customizr] Changing format of date and timeIf the theme inherits WordPress date setting, try to change it from “Settings > General”, and change the “Date Format”
Forum: Themes and Templates
In reply to: Changing opacity for imagesIf you set the opacity of an element, the opacity is set for all of its children as well. try to use rgba instead.
Example
.site-container { background-color: rgba(250, 250, 250, 0.8); }
Forum: Themes and Templates
In reply to: [Customizr] Move textAlternatively you can move the text to the top left a bit.
Try this.deals-col-4 .deals-more-content .deals-more-discount-box p { top: -35px; left: -40px; }
Forum: Themes and Templates
In reply to: [Nucleare] [Theme Nucleare] Removing Social Media IconsYes, you can hide the Social Media Icons using the following code.
.theNavigationSocial a { display: none; }
Forum: Themes and Templates
In reply to: [Family] Add a logo in the header (keep the "text" title)Yes. Site Title and Site Slogan are text. Logo (if added) will replace site title
Forum: Themes and Templates
In reply to: [Family] Add a logo in the header (keep the "text" title)Hi Casou,
You can right aligned to logo with a simple css tweak..site-title a { float: right; }
Hope that helps.
Cheers
Forum: Themes and Templates
In reply to: [Custom] How to remove Primary?If you mean “Featured Image”, go to “Appearance > Customize”, click the “Posts” tab and find option to enable “Featured Image”.
Header Image option is available in “Appearance > Customize” as well.
Hope that helps ??
Forum: Fixing WordPress
In reply to: Remove Footer Credit by Theme DeveloperGive credit where the credit is due, especially for a free theme.
Forum: Themes and Templates
In reply to: [Composer] Move the footer creditsIt’s just a suggestion, no obligation to pay. Give credit where the credit is due. You’ve got a free theme anyway.
Cheers
Forum: Themes and Templates
In reply to: [Omega] Need sidebar space goneHi newzingo,
You can use the following trick to hide sidebar in no time.
Go to “Appearance > Customize > CSS” and insert below code.sidebar-primary { display:none; } .content { float: none; width: 100%; }
Alternative option, you can select Full Width template when you create a page. Hope that helps
Cheers