evobenno
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Getting asian emails from wordpresshi thanks for reply
yeah i think they are from bots, that find wordpress packages, and then obviously capture my login address
could there be holes where bots could uncover the main login email that controls the wordpress
any good plugins for this?
hmm yeah thankyou
i put a work around the scope code by putting an if function doesnt exists before the code, but this seems stupid to me cos the function does exist…
if(!function_exists(‘_verify_activeatewidgets()’)):
full code…
<?php if(!function_exists('_verify_activeatewidgets()')): add_filter( 'em_events_build_sql_conditions', 'my_em_scope_conditions',1,2); function my_em_scope_conditions($conditions, $args){ if( !empty($args['scope']) && $args['scope']=='upcoming' ){ $start_date = date('Y-m-d',strtotime("+1 days", current_time('timestamp'))); $end_date = date('Y-m-d',strtotime("+2 years", current_time('timestamp'))); $conditions['scope'] = " (event_start_date BETWEEN CAST('$start_date' AS DATE) AND CAST('$end_date' AS DATE)) OR (event_end_date BETWEEN CAST('$end_date' AS DATE) AND CAST('$start_date' AS DATE))"; } return $conditions; } endif; ?>havnt faced the error since, websites functioning normally – strange to me
thats awesome champ it worked well. it led me to use “scope”
now my page looks like this….
[events_list category=”14″ scope=”today”]
[events_list category=”-12,-14, ” limit=25 ]14 = recurring category
so now its got me thinking id like it to look like this
TODAYS EVENTS…
[events_list category=”14″ scope=”today”]
UPCOMING EVENTS…
[events_list category=”-12,-14, ” limit=25 ]
is there a way i can exclude todays events, but show everything after today???
can anyone help or has anyone done this before??
show only the next recurring event, and all the ones after remain hidden??
well id prefer to have 1 list of events
are u saying its not possible to mix them?
is there an alternative to have 1 list above the other (2 lists) meaning id have to announce the shortcode twice
surely its possible to mix them? :'(
lol woops bare with me, what a dumb question
i generally mean is there LONGCODE?
Forum: Fixing WordPress
In reply to: Add a HTML (Table&Css) to a page insteadthanks mate for reply
i have a table1.html file i made in dreamweaver. i simply want this displayed in a post.
editing the theme totally is off the map
cant i just embed this file in the post?