kyleform
Forum Replies Created
-
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Table Column WidthsHey Johann
Sorry to chase, dont suppose you had a chance to look at this issue?
thanks
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Table Field LinesThanks for pointing me in the right direction
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Flexible Field & Responsive TableThanks for responding again so quickly.
The get_sub_field was correct, I just had the wrong field name for the row_layout.
All working now, can finally allow clients to make CMS their own tables now, great plugin!!!
Forum: Plugins
In reply to: [Table Field Add-on for ACF and SCF] Flexible Field & Responsive TableHey Johann
Thanks for the response, that worked perfectly, thanks very much for your help with that.
I changed the get_field to get_sub_field hoping that would work, any ideas on what it should actually be?
<?php if( get_row_layout() == ‘list’ ): ?>
<?php
$table = the_sub_field( ‘table’ );
if ( $table ) {Forum: Fixing WordPress
In reply to: Child Pages Not working – Displaying Blankno problem, getting someone from odesk to take a look. thanks for looking anyway, much appreciated!
Forum: Fixing WordPress
In reply to: Child Pages Not working – Displaying BlankThen just calling it the styles, jquery & wp_head as i usually do:
<?php wp_enqueue_script(‘jquery’); ?>
<?php wp_head(); ?><!– Stylesheets –>
<link href=”<?php bloginfo(‘stylesheet_url’); ?>” rel=”stylesheet”>Thats all iv got in the functions.php
<?php // Enable support for post-thumbnails add_theme_support('post-thumbnails'); // If we want to ensure that we only call this function if // the user is working with WP 2.9 or higher, // let's instead make sure that the function exists first if ( function_exists('add_theme_support') ) { add_theme_support('post-thumbnails'); } // Enable second sidebar if(function_exists('register_sidebar')) : register_sidebars(); endif; // Register Custom Navigation Walker require_once('wp_bootstrap_navwalker.php'); // Enable menu function register_my_menus() { register_nav_menus( array( 'primary-menu' => __( 'Primary Menu' ), ) ); } add_action( 'init', 'register_my_menus' ); ?>
Forum: Plugins
In reply to: [Custom Post Type UI] Excerpt NO Showing UpHey
I figured it out, the plugin must have add in a new feature and you now need to go into the edit post types section & select all the attributes you need
Thanks for the response though!
Forum: Plugins
In reply to: [Custom Post Type UI] Excerpt NO Showing UpExcerpt & Featured Image not showing for me too