LizardThemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Frau] No background on pageHi!
It works. And it also works on your site. Do you fix the problem?Forum: Themes and Templates
In reply to: [Medicine] Customizing slider colors in MedicineHi!
There is an image on the background. You can edit it in the file images/slide-meta.png in the theme folder.Forum: Themes and Templates
In reply to: [Frau] No background on pageHi!
Pages have only white background as here https://www.nospetitspapiers.com/propos/. Could you clarify the problem?Forum: Themes and Templates
In reply to: [Frau] Need help with menu and pagesHi!
This is not a Contact form. It is a Comment Form. To get rid of it you have to disallow comments for this page.Forum: Themes and Templates
In reply to: [Frau] My customization is being lost with the upgradeHi!
Sorry for inconvenience. We had to update almoast all the files of the theme at the request of WordPress. This won’t happen in a future.Forum: Themes and Templates
In reply to: [Medicine] Mobile versionHi!
To disable the responsive design you have to follow the instrucion:
1) open file functions.php in text editor and remove there following code:wp_enqueue_style( 'mobile', get_template_directory_uri() . '/styles/mobile.css', '', '1.0.2', 'screen and (min-width:240px) and (max-width:639px)' ); wp_enqueue_style( 'tablet', get_template_directory_uri() . '/styles/tablet.css', '', '1.0.2' , 'screen and (min-width:640px) and (max-width:1023px)' );
2) remove all code starting from strings :
/* TABLET */
in the file style.css.Forum: Themes and Templates
In reply to: [Medicine] Removing author and category from blogHi!
To remove the meta data you have to remove the code:
<p class="post-meta"><?php medicine_entry_meta(); ?></p>
from the file content.php located in the directory of the theme.Forum: Themes and Templates
In reply to: [Frau] My customization is being lost with the upgradeHi!
We can’t provide you the information about our future updates. Probably, you should make a backup before the update. Besides, there is a simple decision. If you change some our files, just copy them to your child theme.Forum: Themes and Templates
In reply to: [Medicine] Limit showroom on mobileHi!
Unfortunately, this is impossible to do. It is not customizable.Forum: Themes and Templates
In reply to: [Frau] Change color and bow?This file is located in the directory of your theme on your server. Besides, you can edit it on page Appearance –> Editor in the dashboard.
Forum: Themes and Templates
In reply to: [Frau] No widgets SidebarHi!
These customizations have to be made on the front page under Administrative account. Please, use the instructions here: https://lizardthemes.com/documentation/customizing_a_theme/.
Sincerely,
James, LizardThemes.com Support.Forum: Themes and Templates
In reply to: [Frau] No widgets SidebarHi!
Could you clarify the issue? Please, give us the URL of your website.
To add any element you want, you have to do the followings:
1)open your website front page, under Administrative account. Click “Customize” at the top of your page to manage page elements.
2)After clicking it, you will see selection of elements, and three buttons at the top of each selection, which have the following functions:
-remove element
-edit element
-get support on lizardthemes.com.
3)When all the necessary for your website elements remains on the page, save this configuration using button “Save Changes” in the top of your page, which is green in the customizing mode.Forum: Themes and Templates
In reply to: [Medicine] slider effects not workingHi!
Sorry for inconvenience. Please, replace the code:jQuery('.slides').cycle({ delay:<?php echo $settings['slider']['delay']; ?>, speed:<?php echo $settings['slider']['speed']; ?>, next: '.slide-right', prev: '.slide-left', pager: 'slider-previews', pagerAnchorBuilder: function(idx, slide) { return '<img src="' + jQuery(slide).attr('src') + '" />'; } });
with:
jQuery('.slides').cycle({ fx:'<?php echo $settings['slider']['effect']; ?>', delay:<?php echo $settings['slider']['delay']; ?>, speed:<?php echo $settings['slider']['speed']; ?>, next: '.slide-right', prev: '.slide-left', pager: 'slider-previews', pagerAnchorBuilder: function(idx, slide) { return '<img src="' + jQuery(slide).attr('src') + '" />'; } });
in the file functions.php located in the directory of the theme.
Forum: Themes and Templates
In reply to: [Medicine] slider effects not workingHi!
There is an option “Save Changes” at the top of the page Medicine –> Slider in the dashboard. Did you save changes after changing the effect for slider?Forum: Themes and Templates
In reply to: [Medicine] Removing the right column for just one pageHi!
Unfortunately, this is impossible to do without coding.