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.