guillermovargasquisoboni
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Organiser] Adding custom taxonomy to event post typeHi Aitor,
It seems that you already make your own taxonomy but you are using the original files of event organiser. You can make a plugin for yourself, you just have to create a php file with a simple header and copy paste your code with your own taxonomy. The php file will begin with this header :
<?php /* Plugin Name: Area for Event Organiser // this is just an idea of name Description: This plugin works with event organiser and original and it is intended to add a taxonomy with areas. */ /* Start Adding Functions Below this Line */
Right below you can add your own code and at the end you will close it with the php closing element ?>
Forum: Plugins
In reply to: [Event Organiser] How to edit an event page?Hi,
You can modify two different files depending on what you want to do: single-event.php and event-meta-event-single.php. You can find them on the folder /templates of event organiser. You have to make a copy and put it on your child theme.
You can find more information here: https://docs.wp-event-organiser.com/theme-integration/how-do-i-customise-the-templates/
Forum: Plugins
In reply to: [Event Organiser] Two differtent date formats in event pageHello Monique,
I just sought your website and it seems that you have not done the change yet. Kenjo365 has the solution but maybe it could be useful if I try to explain you a little but more about what you need to do.
I think that you have two different formats because you enter different information, and actually you have there two different kinds of events. When you get the format day month year (‘j F Y’) is because the events you enter is happening all day. When you get the format month, day year start hour finish hour is because you entered and event with start time and finish time. If you change all your events to “all day events”, you don’t need to change the template.
Otherwise, you may need to follow the instructions of Kenjo365. You have to make a copy of the template named “event-meta-event-single.php” and put it on your child theme. Everything that you transform there will be used instead of the original template. If you want, you can also separate dates and hours, something like:
Date: 22 januari 2018
Hours 9:30 am – 4:30 pmFollow more instruction here: https://docs.wp-event-organiser.com/theme-integration/how-do-i-customise-the-templates/
Concerning the time format, I recommend you to see the section “Method 2: Placeholder Tags” in this page: https://docs.wp-event-organiser.com/shortcodes/events-list/. Maybe you can just use shortcodes to have what you want.
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Remove title space and space above titleFirst you need to know what is the name of the selector for your title… In your example, you’re using the selector .page, which is used in all pages, but not for titles.
You should use the developer tools available in your browser.
– For example, in Chrome, you go to: View > Developper > Developper Tools.
– In Safari, you go to Developer > Show Web Inspector.
– In Firefox, you go to Tools > Web Developper > Inspector.When you are there, you can use the arrow at the left (is an arrow on chrome and firefox and a target in the middle in safari…) to select a specific element in your website and verify which one is controlling the space that you want to modify. If you still have problems figuring out which one is the selector that you need to modify, I can help you. Just I need a link to your website.
- This reply was modified 7 years, 3 months ago by guillermovargasquisoboni.
I’m experiencing the same issue… I will be searching and I will be back here if I find a solution
Forum: Fixing WordPress
In reply to: Error Loading this resource with self hosted videosHello again,
I found an answer to this problem: https://www.ads-software.com/support/topic/chrome-and-firefox-wont-load-header-video-in-twenty-seventeen-theme/
The problem is that the different navigators, and even the different devices, doesn’t have the same rights or capacity to run different video formats. So you need to encode your video file following the compatibilities you need.
What seems to work fine everywhere is this formats : VP8 and Vorbis in WebM ; H.264 and MP3 in MP4; H.264 and AAC in MP4. Specific informations can be found here :
https://developer.mozilla.org/en-US/docs/Web/HTML/Supported_media_formats
Forum: Fixing WordPress
In reply to: Error Loading this resource with self hosted videosHello,
I am having the same issue than alexcham22. So I also ask for help !
In my case, I first added videos to media library in mp4, and then I embedded it in the content thourgh the option “Add media” and selecting the video.
The video is shown well on safari, but not in chrome and firefox, where is producing the error message:”error loading this resource”
Forum: Themes and Templates
In reply to: [Pique] Map as backgroundThank you for your answer Kathryin ! So, let’s do a screenshot !
Forum: Plugins
In reply to: [Novelist] How Can I get Books Cover Images on front-page.php ?I try using this piece of code inside the div “publication-img” but it doesn’t work for me :(.
This is what I done :<div id="publication-item"> <header> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a> </header> <div class="book-cover"><?php $book = new Novelist_Book( get_the_ID() ); echo $book->get_book_cover_image(); ?></div> </div>
Results is a Fatal error… Some other Clue about this issue?
Forum: Plugins
In reply to: [Novelist] Two notices from debug log when using Novelist with twenty fifteenHi NoseGraze,
Thank you for your answer.
I followed your instructions and there is no more notice of bugs. So it works !Regards
Forum: Plugins
In reply to: [Zotpress] Where can I add thumbnails to each book of my collection?Hi Katie,
Yes, I decided to use Open Library method, in order to reduce problems. So all items are using covers that I previously added in Open Library. I’m really enthousiast with the possibility of using zotero in this project. That makes me happy. I will be testing later if there is something on my template that could be creating a conflict with the zotpress browse method. My aim is using this local method to add covers, which is, without any doubts, my preferred option.
Forum: Plugins
In reply to: [Zotpress] Where can I add thumbnails to each book of my collection?Hello Katie,
Thank you to put my eyes on it, because the square is only visible when I mouse over. I tried using both methods, but only Open Library is useful. I added images by the browse, but any image is loaded in the page, and finally, any image seems to be recorded at the browse. Only images loaded at Open Library are fixed.
This is the place : https://lupita.artandfield.org/publicaciones/
Forum: Plugins
In reply to: [Zotpress] Zotpress bibliography outputmalariaproject: I had trouble making this change work on my own child theme, but I finally did with jetpack plugin, and it works. I conclude that something may be wrong at the child theme.
Forum: Plugins
In reply to: [SurveyPress] Thanks and failureI’m experiencing a similar problem during the login process :
Strict Standards: call_user_func_array() expects parameter 1 to be a valid callback, non-static method Bridge_WP_LS::an_check_user_authentication() should not be called statically in /home/artandfi/www/wp-includes/plugin.php on line 601 Strict Standards: Non-static method Bridge_WP_LS::an_insert_into_ls() should not be called statically in /home/artandfi/www/wp-content/plugins/surveypress/survey-press.php on line 661 unable to update records in ls table with given credentials!
Any idea of what is happening?
Forum: Fixing WordPress
In reply to: mysql_connect() ErrorI want to report exactly the same error for me !!!
I want to add that this is the first time in almost three years with the same hosting company that this happened to me. A simple coincidence ? Maybe yes or maybe not…
Are you also hosted by ovh? Do you also installed today the last wordpress version (4.5?)…
Maybe something really grave is happening. Calling for help !