julinho.sf
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Responsive Menu] Display menu from width doesn’t workThanks a lot!!
- This reply was modified 7 years, 4 months ago by julinho.sf.
Hi, thanks for your reply!
I’ve done what you say but I didn’t obtain any log.
With the blank screen I don’t even have the wordpress bar. Here I add four captures:
https://www.magiatamariz.com/wp-content/uploads/01.jpg
https://www.magiatamariz.com/wp-content/uploads/02.jpg
https://www.magiatamariz.com/wp-content/uploads/03.jpg
https://www.magiatamariz.com/wp-content/uploads/04.jpgThanks again!
I have deactivated all other plugins and I have the same problem: white screen.
I have done my own archive-XXX.php and single-XXX.php, and they worked correctly until the update to WP 3.9.1. I can’t find the problem.
Can you help me?
[Moderator Note: No bumping. If it’s that urgent, consider hiring someone instead.]
Hi, I have the same problem. Since I updated to WP 3.9.1 I obtain a white screen… how can I solve it?, I’m in a hurry!
You can see the problem here: https://www.magiatamariz.com/beneficas-lgemat/asociacion-espanola-de-aniridia-2/
And what I want is this: https://www.steaweb.com/boda/galeria-de-fotos/nggallery/despedida-elena/preboda
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel in any size and responsiveThanks a lot!!, it works perfectly!
Forum: Plugins
In reply to: [CPT Bootstrap Carousel] Carousel in any size and responsiveHi Phil,
I did not express myself well. I mean that I want a carousel with width: 300px, not full size. And I want it responsive. Is it possible to do it?.
Thanks again,
JulioThanks a lot,
I’ve managed to do it using this code:
function my_em_has_attribute_event_output_condition($replacement, $condition, $match, $EM_Event){
// Attribute_1
if( is_object($EM_Event) && preg_match(‘/^has_Attribute_1$/’,$condition, $matches) ){
if( !in_array($args[‘Attribute_1’],$EM_Event->event_attributes) && !empty($EM_Event->event_attributes[‘Attribute_1’]) ){
$replacement = preg_replace(“/\{\/?$condition\}/”, ”, $match);
}else{
$replacement = ”;
}
}// Attribute_2
if( is_object($EM_Event) && preg_match(‘/^has_Attribute_2/’,$condition, $matches) ){
if( !in_array($args[‘Attribute_2’],$EM_Event->event_attributes) && !empty($EM_Event->event_attributes[‘Attribute_2’]) ){
$replacement = preg_replace(“/\{\/?$condition\}/”, ”, $match);
}else{
$replacement = ”;
}
}return $replacement;
}
add_action(’em_event_output_condition’, ‘my_em_has_attribute_event_output_condition’, 1, 4);Thanks for your support!