dpope0824
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexy Breadcrumb] Split titles in breadcrump trailI can confirm that with the most updated version Version 1.1.2 I am still seeing the br tags functioning correctly, and not only coming in as a string.
Forum: Plugins
In reply to: [Firelight Lightbox] Custom ClassNo problem just looking forward to the future.
And thanks for all the great work you have done already. Makes working with novices a lot easier.
Forum: Plugins
In reply to: [Firelight Lightbox] Custom ClassOr maybe even data attributes.
Forum: Plugins
In reply to: [Firelight Lightbox] Custom ClassIs this not even possible with the pro version?
Is this something that you would consider adding? Maybe using something like the name attribute on the link and adding it if that attribute exists when you render the fancybox-wrap?
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Import ProblemDisregard this issue, it is a problem with the buggy and should be drug out back and shot wordpress importer.
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Import ProblemIt is actually dropping at least one category entirely when importing, I had a parent category of state and it is disappearing. I have tried clearing cache and doing the full reset and deactivate, have also personally deleted all mention of the post type and taxonomy from the db before trying another import of both at the same time, still the same result for the taxonomy
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Import Problemhttps://gist.github.com/dgpope/4dabebc1e1997777d3a2d9d947f45112
Here is the export and it does show as hierarchical : 1 so that means it should’ve stayed as such correct?
Forum: Plugins
In reply to: [The Events Calendar] Schedule Details formatOr a way to prevent the ajax loading of events? so it refreshes the page
Forum: Plugins
In reply to: [The Events Calendar] Schedule Details formatThanks for the advice, I ended up just using jquery to modify the layout and append what I needed to where I needed. I have one other quick question, would you happen to know if there is an action I can hook into so I can call a js file after clicking previous or next events? If I can get this working will post up my code for any future users. Have to make sure it works on all the pages and not just on the first load.
Forum: Requests and Feedback
In reply to: Stop updatingWise words Mick, will take all of that under advisement. I will definitely jump onto any additions to core that I feel I can assist with. Even if its just bug testing…I know how to break things very well.
Forum: Plugins
In reply to: [Next Active Directory Integration] Can’t disable “Clean existing Roles”As far as I can tell without even looking into plugins is that half of my sites now are completely missing the
next_ad_int_bo_v_clean_existing_roles
table from the wp_options table in the DB. I was able to fix this with adding a new row,INSERT INTO wp_options (option_id, option_name, option_value, autoload) VALUES ('youruniquenumberhere','next_ad_int_bo_v_clean_existing_roles','','no');
- This reply was modified 8 years ago by dpope0824.
Forum: Plugins
In reply to: [Next Active Directory Integration] Can’t disable “Clean existing Roles”We have it happening here as well on 2 sites and I know it has nothing to do with caching, will go through and deactivate plugins in just a bit and provide a list, let you know if there are any conflicts that I can see.
Forum: Developing with WordPress
In reply to: Ajax loaded content and event handlersOh and I know I am a novice when it comes to jquery
Forum: Developing with WordPress
In reply to: Query Media files by item nameNow I get to figure out a way to paginate the results. So it will turn them into a slideshow of sorts.
Forum: Developing with WordPress
In reply to: Query Media files by item nameThis ended up being my little snippet of code and using a custom field from ACF to add whichever suffix I needed.
<?php global $wpdb; $file_suffix = get_field( "file_suffix" ); $result = $wpdb->get_results ( " SELECT * FROM $wpdb->posts WHERE post_type = 'attachment' AND guid LIKE '%$file_suffix' " ); foreach ( $result as $page ) { $url = get_the_guid($page); echo '<a href="'.$url.'"><img src="'.$url.'"></img></a><br/>'; } ?>