-
AuthorPosts
-
February 19, 2014 at 9:35 pm #226452
How can i display a entire page content on a widget?
February 20, 2014 at 3:37 am #226535Hi Guilherme!
You can use shortcodes inside a Text Widget so you can place all the content of the page on it.
Best regards,
IsmaelFebruary 20, 2014 at 7:59 pm #227013I did it but I want it to do itself if I change the page content, can I?
February 20, 2014 at 8:05 pm #227017Not possible as far as i know, maybe there is a plugin out there.
Best regards,
JosueFebruary 20, 2014 at 9:23 pm #227060If i use Iframe does it works?
February 20, 2014 at 9:25 pm #227061It should but you’d need to tweak that page appearance (hide footer, header, etc).
Cheers!
JosueFebruary 20, 2014 at 9:32 pm #227063Which should look like this right?
http://domussapiens.com.br/rodape/
Can u help me with the code so I can make it work better without borders and paddings and stuff? (I’m not a programmer pro D:)
February 20, 2014 at 9:39 pm #227066Where’s the iframe in that page?
February 20, 2014 at 10:01 pm #227071This page is the page that should be in the iframe. The page that I’m trying to use the iframe is: http://www.domussapiens.com.br/
The footer area I used the short codes but I’m looking to use the frame.February 20, 2014 at 10:48 pm #227086So you want to show all the content from /rodape as a footer in the main page? you should need to edit footer.php then and put the iframe code there.
Regards,
JosueFebruary 20, 2014 at 11:10 pm #227097Where in the code should I do?
<?php global $avia_config; $blank = isset($avia_config['template']) ? $avia_config['template'] : ""; //reset wordpress query in case we modified it wp_reset_query(); //get footer display settings $the_id = avia_get_the_id(); //use avia get the id instead of default get id. prevents notice on 404 pages $footer = get_post_meta($the_id, 'footer', true); $footer_widget_setting = !empty($footer) ? $footer : avia_get_option('display_widgets_socket'); //check if we should display a footer if(!$blank && $footer_widget_setting != 'nofooterarea' ) { if( $footer_widget_setting != 'nofooterwidgets' ) { //get columns $columns = avia_get_option('footer_columns'); ?> <div class='container_wrap footer_color' id='footer'> <div class='container'> <?php do_action('avia_before_footer_columns'); //create the footer columns by iterating $firstCol = 'first'; switch($columns) { case 1: $class = ''; break; case 2: $class = 'av_one_half'; break; case 3: $class = 'av_one_third'; break; case 4: $class = 'av_one_fourth'; break; case 5: $class = 'av_one_fifth'; break; } //display the footer widget that was defined at appearenace->widgets in the wordpress backend //if no widget is defined display a dummy widget, located at the bottom of includes/register-widget-area.php for ($i = 1; $i <= $columns; $i++) { echo "<div class='flex_column $class $firstCol'>"; if (function_exists('dynamic_sidebar') && dynamic_sidebar('Footer - column'.$i) ) : else : avia_dummy_widget($i); endif; echo "</div>"; $firstCol = ""; } do_action('avia_after_footer_columns'); ?> </div> <!-- ####### END FOOTER CONTAINER ####### --> </div> <?php } //endif nofooterwidgets ?> <!-- end main --> </div> <?php //copyright $copyright = avia_get_option('copyright', "© ".__('Copyright','avia_framework')." - <a href='".home_url('/')."'>".get_bloginfo('name')."</a>"); //you can also remove the kriesi.at backlink by adding [nolink] to your custom copyright field in the admin area if($copyright && strpos($copyright, '[nolink]') !== false) { $kriesi_at_backlink = ""; $copyright = str_replace("[nolink]","",$copyright); } if( $footer_widget_setting != 'nosocket' ) { ?> <footer class='container_wrap socket_color' id='socket' <?php avia_markup_helper(array('context' => 'footer')); ?>> <div class='container'> <span class='copyright'><?php echo $copyright . $kriesi_at_backlink; ?></span> <?php echo "<nav class='sub_menu_socket' ".avia_markup_helper(array('context' => 'nav', 'echo' => false)).">"; $avia_theme_location = 'avia3'; $avia_menu_class = $avia_theme_location . '-menu'; $args = array( 'theme_location'=>$avia_theme_location, 'menu_id' =>$avia_menu_class, 'container_class' =>$avia_menu_class, 'fallback_cb' => '', 'depth'=>1 ); wp_nav_menu($args); echo "</nav>"; ?> </div> <!-- ####### END SOCKET CONTAINER ####### --> </footer> <?php } //end nosocket check } else { echo "<!-- end main --></div>"; } //end blank & nofooterarea check //display link to previeous and next portfolio entry echo avia_post_nav(); echo "<!-- end wrap_all --></div>"; if(isset($avia_config['fullscreen_image'])) { ?> <!--[if lte IE 8]> <style type="text/css"> .bg_container { -ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale')"; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='<?php echo $avia_config['fullscreen_image']; ?>', sizingMethod='scale'); } </style> <![endif]--> <?php echo "<div class='bg_container' style='background-image:url(".$avia_config['fullscreen_image'].");'></div>"; } ?> <?php /* Always have wp_footer() just before the closing </body> * tag of your theme, or you will break many plugins, which * generally use this hook to reference JavaScript files. */ wp_footer(); ?> <a href='#top' id='scroll-top-link' <?php echo av_icon_string( 'scrolltop' ); ?>></a> <div id="fb-root"></div> </body> </html>
And what should I write? <iframe ???></iframe>?
February 20, 2014 at 11:18 pm #227104Remove from 23-118 and put the iframe code there:
<iframe src="http://domussapiens.com.br/rodape/" frameborder="0" style="width: 100%; height: 613px;"></iframe>
Best regards,
JosueFebruary 20, 2014 at 11:32 pm #227109It worked but not as I was thinking. The copyright vanished and now I have 2 admin bars.
February 20, 2014 at 11:42 pm #227112Now you have to re-create the copyright in the other source iframe page. Regarding the admin bars, you can disable them in Users > Your Profile.
If you need more assistance please contact a developer here, because this is already out of the scope of the support we can offer.
Best regards,
JosueMarch 25, 2014 at 9:48 pm #243002how can I make the sidebar from the blog not interfere on the footer widgets?
website: http://www.domussapiens.com.br
March 26, 2014 at 12:11 am #243062Hey!
Try adding this code to the Quick CSS:
.single #av_section_1 > div > div { width: 1210px; border-right: 0; } .single #after_section_1 { display: none; }
Cheers!
JosueMarch 27, 2014 at 10:12 pm #244086That worked just fine, thanks!!
March 27, 2014 at 10:53 pm #244095You are welcome, glad we could help :)
Regards,
Josue -
AuthorPosts
- The topic ‘Display page content in widget’ is closed to new replies.