skalibran
Forum Replies Created
-
Hi,
thank you for your efforts. Indeed, it seems like the official WPML compatibility plugin for ACF caused the issue. I deactivated it because it is no longer needed in our case.
Forum: Plugins
In reply to: [Advanced Custom Fields: Image Aspect Ratio Crop Field] Crop window too highThis issue is exactly what’s happening on some of our users end. Indeed, error printing is turned on (website isn’t live yet!). I will disable it and see if it will work for everyone then.
Forum: Plugins
In reply to: [Flow-Flow Social Feed Stream] Instagram video thumbnails constantly breakingJust wanted to let the devs know, I have this problem, too! Thumbnails on Instagram videos are broken.
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Exclude pageNot that big of a deal. In the repeater, I wrapped a class around the code: .page_content
In my style.css, I was easily able to disable the display of the first page with nth-child:
.page_content:nth-child(1) { display:none; }
Thanks anyway, love the plugin!
Forum: Plugins
In reply to: [WordPress Infinite Scroll - Ajax Load More] Exclude pageHi
It’s because I want to display all sites except for the site that displays all sites. The site is basically displaying itself.
Maybe there is an option to hide the very first element? It is ordered by the menu, and the site that displays all sites is the first element in the menu.
Working perfectly. The ?year is a problem, because wordpress itself seems to interpret it, but everything else is working as it should! Thanks!
Forum: Hacks
In reply to: How to update values with wpdbYes, I was completely unfamiliar with the syntax ?? It is working now, awesome! Thanks for your help.
Also thanks to Dion for the little reminder, I hope with that snippet my changes to the database structure of wordpress are safe. ??
Forum: Hacks
In reply to: How to update values with wpdbHey, thanks for the answer. I think I understand now how it works. Let’s forget the ‘where’, not needed right now. What did I wrong?
I’m not so much into php right now, maybe its simple and I’m just too inexperienced (dumb) ^^.
$table = 'wp_users'; $data = array('buildings' => 'agdweft'); $wpdb->update( $table, $data['buildings']);
Hey there!
I found the instagram ID and in the near future (when I have the time :D) I will write a small plugin for the plugin that will allow me to add images to the custom javascript you gave me. Also, the editing on the database worked well so I can now add IDs to the custom javascript with ease.
Thanks for your help! ??
Btw the client I’m working for has owned a business license, so I’m working with the pro version already ??
That is working absolutely awesome, thanks for that!
Is there a way to access ‘showPhotos’ outside of the WordPress-Backend, maybe even outside the plugin-folder? I’ve been messing with javascript just for a few weeks now and I’m probably missing some basics.
After having a look at the database I found the field with the custom javascript. I guess its the easiest way to edit the database using a simple php-script.
And one last question: How is the ‘sbi’-id generated? Can I get that value from instagram itself? I think its unnecessary to set up a second hidden wordpress to show the complete feed just to get the sbi-values for the main page.
Thanks!
Hey, thanks for your fast response. Unfortunetaly, I don’t want to limit the attempts, I just don’t want more than one entry per day per user in the log. Ths background is that I want to make some kind of competition where the user with the most tickets has tbe highest chance to win. The user gets one ticket for every day he logs in. To filter the csv-file would be an option, but I also want to display the tickets a user has on login. I think I can do it by accessing the database, but before I have to get sure that the user has at maximum one entry per day in the log. I know it’s not the philosophy of the plugin, but there may is an easy way to check if the user has already logged in that day before writing it to the database. ??