Forum Replies Created

Viewing 15 replies - 1 through 15 (of 59 total)
  • I agrew with you 10%%. This is some really grimy, shady business going on here. Please give the advanced custom fields slug back to wpengine.com who have acquired the plugin code through legit business deal.

    Please create a new slug for your new plugin.

    You are destroying the trust of the community.

    I definitely prefer to use the Classic Editor and my Advanced Custom Fields PRO.

    I like setting up my custom fields and building my theme using it. Right now there is nothing better for speed/ease to create your container for your data and ability to get the data out.

    Has this been fixed? I am seeing the same error on my site as well. I am running version 3.1.9.

    • This reply was modified 3 years, 9 months ago by robbiegod.
    Thread Starter robbiegod

    (@robbiegod)

    yep, that will work! Thank you! That is actually perfect.

    Thread Starter robbiegod

    (@robbiegod)

    I may have figured out why this plugin is not updated anymore.

    I added the Taxonomy field, set the option to post_tag, then set the options to multiselect, don’t allow users to add tags, load post tags, and connect tags to the post.

    This pretty much works the way I want it too. It is not exact because there isnt exactly a search box with autocomplete, but typing in the field will filter the results. So that works close enough.

    This is after I built my own version of the tag field, that populates the tags from wordpress and updates them as well. I’m not sure how i missed the taxonomy field though. I thought I tried the field to see if it would work. It looks exactly like the field I made, so i am probably just going to use it.

    I wish this field type was built-in to ACF PRO. Could really use a field to select tags that have been entered into wordpress.

    At a later date, I may try to modify the plugin to work with the tags in wordpress. If i make some progress i will post my code to github.

    • This reply was modified 7 years, 5 months ago by robbiegod.
    Thread Starter robbiegod

    (@robbiegod)

    Do you still support this plugin?

    Thread Starter robbiegod

    (@robbiegod)

    I have tried on a development site switching to the default WordPress 2017 theme. When I do that I can go to the Edit Posts screen and see the Custom Fields option in the screen options menu along with all of the other options that should be there.

    I’m looking through the 2017 Theme and i am not seeing anything special in there that would enable the custom fields option.

    I also don’t see anything in my plugin or theme that should remove these options.

    This issue came up after I updated to WP 4.8.1. Is there a new to show/hide the custom fields?

    And just so show some more details, both my custom post type and the standard posts section do not show “custom fields” as an option under “Screen Options”. In fact they only show three things under Boxes. “Featured Image, DAV Featured Group, and Slug”.

    In my plugin, this is what I have — it is wrapped in a class:

    add_action('init', array($this, 'setup_post_type'));
    
    // Setup the custom post type for the videos
        public function setup_post_type() {
            add_theme_support('post-thumbnails');
            register_post_type('thankavet', array(
                'labels' => array(
                    'name' => __('Thanks Videos'),
                    'singular_name' => __('Thanks Video')
                ),
                'public' => true,
                'supports' => array('title', 'editor', 'custom-fields', 'thumbnail'),
                'has_archive' => true,
                'menu_icon' => 'dashicons-format-video',
                'rewrite' => array(
                    'slug' => 'thank-you'
                )
              )
            );
          }

    I am still digging, but if someone knows what happened with 4.8.1 related to that screen options menu, i’d be greatful if someone offered some assistance here. I just want to get the custom fields to appear in the Edit Post page.

    • This reply was modified 7 years, 7 months ago by robbiegod.

    I’d say that this plugin appears to be dead.

    No reply in 8 months and the plugin hasn’t been updated in over 2 years.

    I also like this plugin, but it doesn’t appear to work with universal tracking code and may have other issues with the latest version of WordPress. I’m not seeing the values I enter in the menu panel appear in the html outputted by the menu.

    I have a similar question. I have a “page” called “News” and another page called “Nurtrition” that lives under the “News” page; They are page post types. I want to remove the “News” page from the breadcrumb on the “Nurtrition” pages.

    How do you filter out a page in the breadcrumb?

    I’m using the latest version of your plugin and wordpress. Hopefully this is similar enough to Nitrats question that you can help us both out.

    Thread Starter robbiegod

    (@robbiegod)

    I’m actually trying to do this a different way now. Trying to use documentation you provide and so I’ve added this code to the functions.php file in my theme:

    $slider_id = 9;
    
    // $slider_output = get_masterslider( $slider_id );
    $slider_output = get_masterslider_parsed_data( $slider_id );
    
    function my_custom_masterslider_slider_content( $slider_output ){
    
      $master_slider_data = get_masterslider_parsed_data( 9 );
      $master_slider_data['slides'][0]['src'] = '/2016/06/random_photo.jpg';
      $master_slider_data['slides'][0]['src_full'] = '/2016/06/random_photo.jpg';
      print_r($master_slider_data);
    
    }
    add_filter( 'masterslider_slider_content', 'my_custom_masterslider_slider_content' );

    So, when i print_r($master_slider_data) in the above code, I can see i am manipulating the value within the array. So that is good. Now, what i want to do is load that data and display the carousel. How might i do that?

    Thread Starter robbiegod

    (@robbiegod)

    Hi averta – I can set you up with a user/pass to my wordpress install so i can show you the slider and what i am trying to do, but i am wondering if you a technique built in to master slider that would allow me to load a random image into the first slide and then “refresh” the slider or re-initiate it?

    I’m not exactly sure what i need to do once i replace the carousel with javascript to get it to use the transitions smoothly. I’m experience a bit of lag when I click the next arrow from slide1(where i have the randomly loaded image) to slide2 which is a slide that has not been modified externally.

    So only slide1 loads a random image, i’m just trying to figure out how to get it to continue to run smooth.

    Do you have an email address i can send the login info too? You can PM me here if you’d like?

    Thread Starter robbiegod

    (@robbiegod)

    Currently i have this slider on a staging site. Can i DM you or email a link with a user/pass to get into my wordpress site so you can see the slider?

    Thread Starter robbiegod

    (@robbiegod)

    I could fix this issue still not sure what caused it. But the way i fixed it was i reloaded all of the images into the media library and then went through every post and re-added the images to the posts. That fixed it.

    Not the best solution so I’d like to know if there was a better way. if my site was huge it would have been horrible having to go through and reload every page with the fixed image.

    Thread Starter robbiegod

    (@robbiegod)

    @christian1012 – You are 100% correct. I should have been using the wp_dequeue_script not wp_deregister.

    I understand basically i am making a template that doesnt need all of the js files in the header, trying to trim down what it loads to make it load faster.

    I did test wp_dequeue_script and i am able to remove a js script that i’ve wp_enqueue_script in my parent and the child theme i am building i can then remove the scripts and get no error. This is a good fix.

    thanks for the assistance.

Viewing 15 replies - 1 through 15 (of 59 total)