TassieNZ
Premium Uploader and Sometimes Hacker!
Not on Codecanyon, so don't think I can help.Thank you very much bro
there is an update to v2.0, can you update ?
King-Theme Support
king.ticksy.com
Not on Codecanyon, so don't think I can help.Thank you very much bro
there is an update to v2.0, can you update ?
King-Theme Support
king.ticksy.com
Not on Codecanyon, so don't think I can help.![]()
And that is exactly what I posted above! 25 August 2020![]()
Addons Bundle for Lumise Product Designer
Addons Bundle for Lumise Assign templates for product Background image for design Distress effect Dropbox auto sync Images library plus Tours builder (guide for visitors) My design...codecanyon.net
Thanks to.Look in .....................
lumise/core/includes/views.php
Yes, both your version and the one on Babiato are listed as 2.0.1
Download Lumise Product Designer v2.0.3 | WooCommerce WordPress Nulled Free
Changelog Not Found!
TassieNZ
Could you kindly help me? I need the Print (and download) tab to appear for mobile devices like in this demo: https://theme.lumise.com/demo/design-editor/?product_base=6&product_cms=0
I found some things that I think could be, but I don't understand these codes, kkk
1º wp-content/plugins/lumise/core/includes/views.php
Line 126:
<?php
$design_nav = ob_get_contents();
ob_end_clean();
echo $this->main->apply_filters('design-nav', $design_nav);
$alwd = '';
if (
!$this->main->connector->is_admin() &&
$this->main->cfg->settings['user_print'] != '1' &&
isset($_GET['design_print']) &&
is_file($this->main->cfg->upload_path.'designs'.DS.$_GET['design_print'].'.lumi')
) {
$this->main->cfg->settings['user_print'] = '1';
$alwd = ' data-alwd="'.urlencode($_GET['design_print']).'"';
}
if (!$this->main->connector->is_admin() && $this->main->cfg->settings['user_print'] != '1' || $this->main->apply_filters('show-print-nav', false))
$alwd = ' style="display:none;"';
ob_start();
And also at:
wp-content/plugins/lumise/assets/css/responsive.css
has several attributes display: none !important;
Could you guide me what to modify or if I should enter a code to unlock this Print tab on mobile devices? Thank you in advance for your attention and if you can help me I will be very grateful.
Try this.
Option 1. Add custom CSS at bottom of responsive.css file.
div#LumiseDesign div#lumise-navigations ul[data-block] li[data-tool=print] {
display: inline !important}
Check if it worked. If not
Option 2. Search and remove below line where it shows css display: none;
div#LumiseDesign div#lumise-navigations ul[data-block] li[data-tool=print]