dfgphp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] remove layout optionsThanks for your reply, what I was looking for. I also found this to personalize users, leave it in case someone needs it.
Best regards.
function remove_screen_options(){ __return_false;} add_filter('screen_options_show_screen', 'remove_screen_options');
and
get_currentuserinfo() ; global $user_level; function remove_screen_options(){ __return_false;} if( $user_level <= 8 ) add_filter('screen_options_show_screen', 'remove_screen_options');
Forum: Themes and Templates
In reply to: [Customizr] remove layout optionsThe plugin blocks adminize box but does not eliminate, my intension is that this box does not appear
best regards.
Forum: Themes and Templates
In reply to: [Customizr] remove layout optionsHello, rdellconsulting, I’m trying to eliminate in the edit page, the box below.
<img src=”https://i59.tinypic.com/29o1pwx.png” border=”0″ alt=”Image and video hosting by TinyPic”>“>[IMG]https://i59.tinypic.com/29o1pwx.png[/IMG]
Thanks for your reply.
best regards
Forum: Themes and Templates
In reply to: [Customizr] @media (max-width: 320px) No responsive ?thanks in reviewing the lines I found that missing a (;), sometimes a good response gives a great solution.
best regards
Forum: Plugins
In reply to: [Easy Contact Forms] Don't see Submit buttonHola , lo solucione cambiando get_foother() por wp_footer()
<?php /* Template Name: page contact */ ?> <?php get_header(); ?> <div class='page1'> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class='post1' id='post-<?php the_ID(); ?>'> <h2><?php the_title(); ?></h2> <div class='contact'><?php the_content('<p class=”serif”>Read the rest of this page »</p>'); ?> </div> <div class='contactf'><?php the_post_thumbnail('medium'); ?> </div> <?php endwhile; endif; ?> </div> </div> <?php wp_footer(); ?>
Forum: Plugins
In reply to: [Easy Contact Forms] No submit button.Hi, I solved changing get_foother () by wp_footer ()
<?php
/*
Template Name: page contact
*/
?><?php get_header(); ?>
<div class=’page1′>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=’post1′ id=’post-<?php the_ID(); ?>’><h2><?php the_title(); ?></h2>
<div class=’contact’><?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
</div>
<div class=’contactf’><?php the_post_thumbnail(‘medium’); ?>
</div>
<?php endwhile; endif; ?>
</div>
</div><?php wp_footer(); ?>
Forum: Plugins
In reply to: [Easy Contact Forms] No submit button.Hi, I have the same problem, any ideas?
Forum: Plugins
In reply to: [Easy Contact Forms] Don't see Submit buttonHi, I have the same problem, any ideas?
dfgphp
Forum: Plugins
In reply to: [Multi-level Navigation Plugin] More Custom codeSolve it with the following video.
Forum: Themes and Templates
In reply to: [Customizr] New Format Postsok, thanks for the reply.
best regards
Forum: Plugins
In reply to: [Weekly Class Schedule] timetable for hours ???I just have to add the empty hours, start time is on the calendar
ok thanks for replying promptly.
best regards
Forum: Plugins
In reply to: [Weekly Class Schedule] Error – Illegal String Offsetalready solved?
Forum: Plugins
In reply to: [Weekly Class Schedule] [wcs] does not show the page.Hello, first, create the template in the following format page_custom.php
<?php
/*
Template Name: Custom_Page_Timtable
*/
?>
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div id=”wrapper”>
<div class=”efectoimg”>
<span></span><div class=”post-it”> TIMETABLE </div>
<div class=”fondo”>
<?php the_content(‘<p class=”serif”>Read the rest of this page ?</p>’); ?>
<?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php //edit_post_link(‘edit’, ‘<p>’, ‘</p>’); ?>
</div>
</div>
<?php get_footer();
?>Second: edit page in wordpress and adding template
Best regards
Forum: Plugins
In reply to: [Weekly Class Schedule] timetable not showing on my siteHello, first, create the template in the following format page_custom.php
<?php
/*
Template Name: Custom_Page_Timtable
*/
?>
<?php get_header(); ?>
<div id=”content” class=”narrowcolumn”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div id=”wrapper”>
<div class=”efectoimg”>
<span></span><div class=”post-it”> TIMETABLE </div>
<div class=”fondo”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »</p>’); ?>
<?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php //edit_post_link(‘edit’, ‘<p>’, ‘</p>’); ?>
</div>
</div>
<?php get_footer();
?>Second: edit page in wordpress and adding template
Best regards