rafaelvidal
Forum Replies Created
-
What is a stack-trace and how can I get it?
- This reply was modified 4 years, 10 months ago by rafaelvidal.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Plugin not working, no imagesThat’s great news.
I’m trying to do my own workaround meanwhile. But it’s a bit though.
I’m reading the G-Photos API and trying to overwrite your code.If you need any help call me.
Do you use translations? I can help if so.Thank you and congratulations, @nakunakifi
- This reply was modified 5 years, 8 months ago by rafaelvidal.
Forum: Plugins
In reply to: [Google Photos Gallery with Shortcodes] Plugin not working, no images@nakunakifi , you should allow us to use our own API key and quota, instead of yours.
It would instantly solve this quota limit issue.@nakunakifi , yes, I did de-authorise and re-authorise the plugin. No change, though.
No picture is displayed.There is only a blank page. Not a single picture or album is displayed.
No error thrown.This is my shortcode:
[cws_gpp_albums_gphotos access=own theme=’grid’ results_page=’galeria-fotos’ album_title=1 show_title=1 show_details=0 num_results=50 hide_albums=’Auto Backup,Profile Photos’]Same problem here, @banhegyianita
I have changed the shortcode and the page is empty!
- This reply was modified 5 years, 8 months ago by rafaelvidal.
Yes, by disabling I mean both disabling the plugin and changing from Beaver Builder to native WP Editor.
When I updated images in Beaver Builder, the images were visible. After applying changes (Pulbishing), images would not be displayed. They would still be appointing to an old direction. Seems a caching issue.
I got similar problem. Images were not displaying.
After updating to the last version, they appeared, but the layout got messed… ??
- This reply was modified 6 years, 5 months ago by rafaelvidal.
- This reply was modified 6 years, 5 months ago by rafaelvidal.
Forum: Plugins
In reply to: [Event Organiser] CHANGE DISPLAY ORDERRESOLVED
add_action('pre_get_posts','wpse50761_alter_query',15); function wpse50761_alter_query($query){ if( $query->is_main_query() && is_post_type_archive('event') || is_tax('event-category') ){ $query->set('orderby','eventstart'); $query->set('order','DESC'); } }
changed “if” row; added ” || is_tax(‘event-category’) ” at the end of the if condition.
Forum: Fixing WordPress
In reply to: The uploaded file could not be moved to wp-content/uploadsProblem found: PHP ‘safe_mode’ was turned on
Once I disabled this option, upload started to work.
Forum: Plugins
In reply to: [WP Native Dashboard] Can not get language listWhy you think that?
What problem are you getting?Forum: Plugins
In reply to: [WP Native Dashboard] "check repository" doesn't workRESOLVED
Check repository button will ONLY work if the checkbox buttonextend the WordPress Logon Screen to choose a language too.
is ticked.
Forum: Fixing WordPress
In reply to: permalink rewrite error: "You should update your .htaccess now"I have managed to resolve this issue by setting permissions to 775 on dir “httpdocs” which stores all WP files.
The main issue with this is how open the website gets.Anyway, thanks for everybody attention.
Forum: Fixing WordPress
In reply to: permalink rewrite error: "You should update your .htaccess now"Htaccess does work on my host. I have other websites in this same server that use it.
MOD_REWRITE
It’s enabled, check this image: https://snag.gy/uOAOA.jpgREWRITE LOG
No log is being generated.Forum: Fixing WordPress
In reply to: permalink rewrite error: "You should update your .htaccess now"Jan D.,
I just changed the following part of my http.conf file from “AllowOverride None” to “AllowOverride All“, but nothing changed.# # Each directory to which Apache has access can be configured with respect # to which services and features are allowed and/or disabled in that # directory (and its subdirectories). # # First, we configure the "default" to be a very restrictive set of # features. # <Directory /> Options FollowSymLinks AllowOverride None </Directory>
Then I restarted apache server, but didn’t work.
Forum: Fixing WordPress
In reply to: permalink rewrite error: "You should update your .htaccess now"I believe it has “AllowOverride All” allowed, do I check that on
Apache config file? (httpd)