Pedromrferreira
Forum Replies Created
-
Forum: Plugins
In reply to: [Flamingo] regular Mails are in my Spam-FolderHi, Same here…
Forum: Plugins
In reply to: [WooCommerce EU VAT Assistant] VAT# disappears after savingOk, thank you very much.
Forum: Plugins
In reply to: [WP Tabbed Widget] Link Tabs Problem on MobileFigure it out!
On tabbed.jsChanged:
tabs.on( 'click', '.wp-tabbed-nav li', function( e ){
to
tabs.on( 'click touchstart', '.wp-tabbed-nav li', function( e ){
Forum: Plugins
In reply to: [Social Reviews & Recommendations] Does not work in SiteOrigin.Ok, thanks for the feedback. If i decide go pro, i’ll contact you.
Forum: Plugins
In reply to: [Social Reviews & Recommendations] Does not work in SiteOrigin.In the widget area it works fine, but in the editor area it shows like this:
https://drive.google.com/open?id=0B4F29BOImp3mY1dCZFI2OVp6aHcForum: Plugins
In reply to: [Social Reviews & Recommendations] Does not work in SiteOrigin.In the widget area it works fine, but in the editor area it appears like this:
https://drive.google.com/open?id=0B4F29BOImp3mY1dCZFI2OVp6aHcForum: Plugins
In reply to: [Social Reviews & Recommendations] Does not work in SiteOrigin.Hello, the plugin is this one: https://www.ads-software.com/plugins/siteorigin-panels/
Forum: Plugins
In reply to: [Social Reviews & Recommendations] Does not work in SiteOrigin.Hello, same here… Siteorigin is a page builder and the plugin doesn’t work, I think it might not work via shortcode, can you teste it?
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] RoleI need WCK to be hidden for shop managers. The manager_options deny doesn’t seen to fix the issue.
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] RoleHi,
Ok, it works for editor role, but since I have woocommerce, it doesn’t work for Shop Manager. Any advice?
Thanks?
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] RoleHello, thanks for the reply.
I have Members plugin installed, but ca’t find the option to not allow editor to access WCK…Forum: Plugins
In reply to: [Advanced post slider] Show the date ?Me 3
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] PTC and CFCSolved
Your solution didn’t work, I added wp_reset_query();
<div class="top-servicos"> <?php $args = array( 'post_type' => 'servicos', 'posts_per_page' => 3 ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); echo '<div class="coluna-servicos">'; echo '<a href="'; the_permalink(); echo '">'; echo '<h3>'; the_title(); echo '</h3>'; the_excerpt(); echo '<div class="mais">Mais</div>'; echo ''; echo '</div>'; endwhile; wp_reset_query(); ?> </div><!--top-servicos--> <?php $mensagem = get_post_meta( $post->ID, 'mensagem', true ); foreach( $mensagem as $mensagem){ echo '<div class="mensagem">'; $attachment_image = wp_get_attachment_image_src($mensagem['imagem'], 'banner'); echo '<img src="'. $attachment_image[0].'"/>'; echo '<div class="content-mensagem">'; echo '<h3>' . $mensagem['titulo'] . '</h3>'; echo '<p>' . $mensagem['texto'] . '</p>'; echo '<div class="pastor">' . $mensagem['nome'] . '<span> - ' . $mensagem['cargo'] . '</span></div>'; echo '</div><!--content-mensagem-->'; echo '</div><!--mensagem-->'; } ?>
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] PTC and CFCMy php skills are kind limited. Don’t now what you mean with “var_dump ( $mensagem ) ”
Forum: Plugins
In reply to: [Custom Post Types and Custom Fields creator - WCK] PTC and CFC<div class="top-servicos"> <?php $args = array( 'post_type' => 'servicos', 'posts_per_page' => 3 ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); echo '<div class="coluna-servicos">'; echo '<a href="'; the_permalink(); echo '">'; echo '<h3>'; the_title(); echo '</h3>'; the_excerpt(); echo '<div class="mais">Mais</div>'; echo ''; echo '</div>'; endwhile; ?> </div><!--top-servicos--> <?php $mensagem = get_post_meta( $post->ID, 'mensagem', true ); foreach( $mensagem as $mensagem){ echo '<div class="mensagem">'; $attachment_image = wp_get_attachment_image_src($mensagem['imagem'], 'banner'); echo '<img src="'. $attachment_image[0].'"/>'; echo '<div class="content-mensagem">'; echo '<h3>' . $mensagem['titulo'] . '</h3>'; echo '<p>' . $mensagem['texto'] . '</p>'; echo '<div class="pastor">' . $mensagem['nome'] . '<span> - ' . $mensagem['cargo'] . '</span></div>'; echo '</div><!--content-mensagem-->'; echo '</div><!--mensagem-->'; } ?>