Ocultar sidebar -- Hide sidebar

April 2014 WordPress Theme
GK User
Wed Dec 10, 2014 3:26 pm
Hola

Estoy trabajando con un plugin para gestionar mi portafolio.
El plugin aloja las paginas y estructuras (page.php, archive.php y single.php y sus respectivos layouts) dentro su carpeta (plugins/plugin/theme).
Aunque el plugin y John combinan a la perfección tengo un problema.
El plugin carga header y footer usando get_header() y get_footer(), pero aunque no carga sidebar() para que la pagina ocupe todo el ancho, el sidebar se carga igualmente. :dry:

¿Que le debo añadir para que no John no cargue el sidebar?

Gracias

--------------

Hi!

I'm working with a plugin to manage my portfolio (custom_types).
This plugin contains and structures pages (page.php, single.php and archive.php and their layouts) in your folder [wp-content/plugins/portfolio/theme].
Plugin combines well with John, but I have a problem.
Plugin load header and footer correctly with get_header() and get_footer(), but although not load sidebar() to be fullwidth page, the sidebar is loaded equally. :dry:

What I should add so John don't load the sidebar?

Thanks
User avatar
Expert Boarder

GK User
Thu Dec 11, 2014 12:24 am
Hello,

The code responsible for the sidebar is placed in John/layouts/after.php file:
Code: Select all
if(
               get_option($gk_tpl->name . '_page_layout', 'right') != 'none' &&
               gk_is_active_sidebar('sidebar') &&
               (
                  $args == null ||
                  ($args != null && $args['sidebar'] == true)
               )
            ) : ?>
            <?php do_action('gavernwp_before_column'); ?>
            <aside id="gk-sidebar">
               <?php gk_dynamic_sidebar('sidebar'); ?>
            </aside>
            <?php do_action('gavernwp_after_column'); ?>
            <?php endif; ?>
User avatar
Moderator

GK User
Fri Dec 12, 2014 12:12 pm
Hola!

No se muy bien que hacer con el codigo que me muestras...

He conseguido corregir esto con la opción Widget Visibility de Jetpack, pero esto no me solventa todo el problema. La opción Widget Visibility de Jetpack, no es tan completa como las opciones Widget rules de Gavick, pero estas no me aparecen! :huh: Widget rules

Gracias.

--

Hi!

I do not really know what to do with the code you show me...

I managed to fix this with Jetpack's Widget Visibility option, but this did not resolve the problem completely. Jetpack's Widget Visibility option is not as complete as options for Gavick's Widget rules, but these do not appear to me! :huh: Widget rules

Thanks.
User avatar
Expert Boarder

GK User
Fri Dec 12, 2014 7:31 pm
I thought you want to modify your custom post types to display siebar, ok in this case please send me a PM with backend access to your website, I'll check the issue with widget rules.
User avatar
Moderator

GK User
Fri Dec 12, 2014 9:47 pm
Despues de hacer varias pruebas veo que no necesito para nada el codigo que me pasas, el problema erradica en el hecho de que como te comentaba aquí, el Gavick Framework no guarda los cambios
--
After several tests I do, I see no need for any code that you pass me.
The problem is that as I commented here, the Gavick Framework does not save changes
User avatar
Expert Boarder


cron