-creynolds-aiec
Forum Replies Created
-
Forum: Plugins
In reply to: [User Access Manager] Changing role affiliation doesn't work anymoreI have this same issue. Is this seriously a 2 month old bug that hasn’t been fixed or is there a plugin conflict I should be looking for.
Forum: Plugins
In reply to: [Groups] Restrict Write AccessHi thanks for the reply. Is this going added or added already in a recent version of Groups?
If not then maybe an eta.Thanks for an awesome plugin.
Chris
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] restrict to main contentWell I posted to the support forums one month ago. No suggestions. So if anyone out there as any ideas that would be awesome. Otherwise I’ll just have to find a different solution.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] restrict to main contentIf anyone has anything that can help me with this issue I would really appreciate it. I was hoping that posting it on their official support forums was a good sign but three weeks later I haven’t heard anything.
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] restrict to main contentForum: Plugins
In reply to: [plugin: optiontree] get post thumbnail size of sliderI know it’s been a while for you guys but I thought I would send you a link to what I found.
I know it’s not really cool to repost stuff but this seemed to be in the wrong spot and wasn’t getting any traction.
So I reasked the question in the OptionTree forum.
https://www.ads-software.com/support/topic/plugin-optiontree-get-post_thumbnail-in-list-or-slider?
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Get post_thumbnail in list or sliderforgot to mark as resolved.
Forum: Plugins
In reply to: [OptionTree] [Plugin: OptionTree] Get post_thumbnail in list or sliderAwesome thanks for the help Derek.
I used this functionfunction get_attachment_id_from_src ($image_src) { global $wpdb; $query = "SELECT ID FROM {$wpdb->posts} WHERE guid='$image_src'"; $id = $wpdb->get_var($query); return $id; }
I found it here:
https://www.ads-software.com/support/topic/need-to-get-attachment-id-by-image-urland this to get the image
$attachmentid = get_attachment_id_from_src ($slide['img']); $custom = wp_get_attachment_image_src( $attachmentid, 'orbit-custom' ); <img src="' <?php echo $custom[0] ?>" />
Of course I used the add_image_size to create the orbit-custom
Forum: Plugins
In reply to: [plugin: optiontree] get post thumbnail size of sliderI could really use this feature as well. It doesn’t make sense for me to use OT for a slider unless I have this option. Has there been an update or solution for this? I can’t seem to find one.
Forum: Themes and Templates
In reply to: Dropdown menu issue on iosSorry I got moderated above. I’m a noob.
Forum: Themes and Templates
In reply to: Dropdown menu issue on iosi fixed it by teaching myself a little jQuery
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
for some reason I couldn’t get the userAgent.match for ipad to work so I put it in a php user agent check
<?php $isiPad = (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad'); if(!empty($isiPad)){ // code goes here } ?>
Having this exact same issue. I can hide it with css but that is a pretty janky solution.