bgva2005
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Minamaze_Pro/styles vs Minamaze_Pro-child/stylesHi girlieworks, this is the URL:
Forum: Fixing WordPress
In reply to: wordpress link problemThanks James Huff, I am going to follow you advice.
Forum: Fixing WordPress
In reply to: wordpress link problemHi James Huff
I know that is going to work but I want ot understad what is hapening, why is the reason that is not working because in another page that option work withou problem.Forum: Themes and Templates
In reply to: widget missing thinkup builder imageHi alexgso
the same happend with:
SiteOrigin Widgets Bundle
Page Builder by SiteOriginForum: Themes and Templates
In reply to: Add a background image to my footer Omega child theme.Forum: Themes and Templates
In reply to: [Omega] Omega Theme locate images into headersolution:
Into the child theme, function.php
1.- Inactivate the header functions:function unhook_thematic_functions() { remove_action('omega_header','omega_branding'); //elimina la funciòn de header } add_action('init','unhook_thematic_functions');
2.- Create a new omega_header
function childtheme_header_personalisacion1() { ?> <table width = 100% class="tabla_personalisacion1"> <tr class="tabla_personalisacion1"> <td width = 20% align="left" class="tabla_personalisacion1"> <img src="Archivos/Imagenes/L_01_PlanificacionBlancoTodo.png" height="300" width="300"> </td> <td width = 60% align="center" class="tabla_personalisacion1"> <?php $title = sprintf( '<h1 class="site-title" itemprop="headline"><a href="%1$s" title="%2$s" rel="home">%3$s</a></h1>', home_url(), esc_attr( $title ), $title ); ?> <!-- <h1 class="site-title" itemprop="headline"><a href="#" title="222" rel="home">Gobierno Abierto</a></h1> --> <h1 class="site-title" itemprop="headline"><a href="#" title="222" rel="home">GOBIERNO ABIERTO</a></h1> <?php //echo omega_apply_atomic( 'site_title', $title ); ?> </td> <td width = 20% align="right" class="tabla_personalisacion1"> <img src="Archivos/Imagenes/L_02_Quitoalcaldia_04.png" height="300" width="300"> </td> </tr> </table> <?php } add_action('omega_header','childtheme_header_personalisacion1');
Forum: Fixing WordPress
In reply to: image inside footer's Omega themesolution:
Into the child theme, function.php1.- Inactivate the footer functions:
function unhook_thematic_functions() { remove_action('omega_footer', 'omega_footer_insert'); //elimina la funciòn del footer remove_action('omega_footer_insert', 'omega_default_footer_insert' ); } add_action('init','unhook_thematic_functions');
2.- Create a new omega_after_footer
function omega_footer_insertNew() { //echo '<div class="footer-content footer-insert">'; echo'<p class="wrapfooter"> <img src="Archivos/Imagenes/F_03_GraficoFooter.png"> </p>' ; } add_action('omega_after_footer', 'omega_footer_insertNew');
Forum: Fixing WordPress
In reply to: image inside footer's Omega themeHi please some help?
Forum: Themes and Templates
In reply to: Add a background image to my footer Omega child theme.What I did is to update the file : hooks.php into omega theme to:
/** * default footer insert filter */ function omega_default_footer_insert( $settings ) { /* If there is a child theme active, use [child-link] shortcode to the $footer_insert. */ if ( !is_child_theme() ) { return '<p class="copyright">' . __( 'Copyright © ', 'omega' ) . date_i18n( 'Y' ) . ' ' . get_bloginfo( 'name' ) . '.</p>' . "\n\n" . '<p class="credit">' . omega_get_theme_name() . __( ' WordPress Theme by ', 'omega' ) . omega_get_author_uri() . '</p>'; } else { /** return '<p class="copyright">' . __( 'Copyright © ', 'omega' ) . date_i18n( 'Y' ) . ' ' . get_bloginfo( 'name' ) . '.</p>' . "\n\n" . '<p class="credit">' . omega_get_child_theme_link() . __( ' WordPress Theme by ', 'omega' ) . omega_get_author_uri() . '</p>'; */ return '<p class="copyright"> <img src="Archivos/Imagenes/F_01_GraficoFooter.png" alt="" > </p>' ; } }
The site is: apps.quito.gob.ec.
Do someone know how to do this change with the child theme?
Forum: Fixing WordPress
In reply to: Menu button funcionality.thanks.
Forum: Fixing WordPress
In reply to: a BAR with social networksI found another alternatives into google
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] All in One WP Migration Errorthanks for your help, the problem was solve I follow these instructions :
https://codex.www.ads-software.com/Moving_WordPress#Moving_to_a_New_Server
My error was because in the Template line I used “O” instead of “o”.
the correct line is:
Template: omega
Forum: Fixing WordPress
In reply to: Omega theme eliminate the right sidebarI erase de history and the problem was solve.
Are there a best alternative to solve the problem?
Forum: Fixing WordPress
In reply to: wordpress, screen resolutionthanks for your help, the problem was solve.