Caravaggio76
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabs & Accordion] Doesnt work with DiviHi, have you found a solutions? I have the same issue. Thanks.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Image resolutionOk, I fix this issue in this way:
if (is_home()){ if ( isset( $e['medium'] ) && $e['medium'] != '' ) { $e['image_url'] = strip_tags( $e['medium'] ); $e['image'] = $e['medium']; } else { $image_size = apply_filters( 'mc_default_image_size', 'thumbnail' ); $e['image_url'] = strip_tags( $e[$image_size] ); $e['image'] = $e[$image_size]; } } else{ if ( isset( $e['large'] ) && $e['large'] != '' ) { $e['image_url'] = strip_tags( $e['large'] ); $e['image'] = $e['large']; } else { $image_size = apply_filters( 'mc_default_image_size', 'thumbnail' ); $e['image_url'] = strip_tags( $e[$image_size] ); $e['image'] = $e[$image_size]; } }Yes, I know, it’s a bad solution but I don’t know how to fix it in other way.
Now my fear is next MyCalendar upgrade. Surely I lose my changes.
Joe, can you help me?
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Image resolutionToday i tried to change the function mc_image_data( $e, $event ) into my-calendar-templates.php
I found the problem in that part of code
if ( isset( $e['medium'] ) && $e['medium'] != '' ) { $e['image_url'] = strip_tags( $e['medium'] ); $e['image'] = $e['medium']; }Changing the value “medium” to “large” it run….but images size change even on the Home page list. They are connected!!!
How can I change, ONLY, the event post image size?Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Image resolutionI put mc-custom-image-size.php into my-calendar folder manually and now it’s showed on plugin panel.
I activated it….but not run!!
Nothing happen, image are not resized in large format.In homepage you can see the event list with thumbnails
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Image resolutionI tried to install mc-custom-image-size.php but installation failed.
It says:
the package can not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signatureMaybe I have to do it manually.
Do I have to copy it into the wp-content/plugins/my-calendar folder?I saw some other files in your Github… do I have to install them?
They are:
– mc-facebook.php
– mc-insert-class-in-nav.php
– mc-notify.php
– mc-redirect-single-event-view.php
– mc-time-format.php
– mc-twitter.php
– my-calendar-custom-fields.phpP.S.: I tried to install the unpackaged my-calendar folder with all those files but the same error is showed
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Image resolutionHi,
here my page with the image in low resolution.I’m not expert with wordpress. Can you say to me what file I have to modify?
Where I have to add that filter?After this upgrade MyCalendar will use large image everytime?
this will make heavier page?tnx and sorry for my english
Forum: Themes and Templates
In reply to: [Hueman] AlxVideo doesn't work without blog contentsHi bdbrown, thanks for your replay.
I tried your suggestions but nothing changes. Video don’t work in primary column when blog is empty.Other suggestions? 😀
Thanks a lot
Forum: Themes and Templates
In reply to: [Hueman] AlxVideo doesn't work without blog contentsMaybe I solved it.
In the function shortcode, in the file “class-wp-embed.php” I replaced that part of codeif ($post_ID)
withif(1==1)Now I don’t know if that update will bring plroblems to me.
Have you better suggestions?
Forum: Themes and Templates
In reply to: [Hueman] AlxVideo doesn't work without blog contentsI embedded another video after widget “Articoli Recenti” (recent posts) and it works fine.
The first no yet.