hopptaustralia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to change background of footer’s heightthanks for the reply t-p… i had contacted the author of the plugin a few days ago but till date no respond so i decided to try my luck here…
Forum: Plugins
In reply to: [CDN Enabler] CDN enablerso i need a seperate keyCDN account to make a cdn.uni-corp.com account so that i could unify all my resources? but that still doesnt change how do i change me default upload directory?
Forum: Plugins
In reply to: [CDN Enabler] CDN enablerHi Eugene,
thanks for the reply.. after reading the link you gave me… does it mean that by creating the zonealias ….and maybe creating a wildcard- *.uni-corp.com it would allow me to unify my website and images? but how do I change the default upload folder in wordpress if i use this?
and do i need to have a seperate keycdn account for this to work?Forum: Fixing WordPress
In reply to: how to change the media upload URL in wordpress 4.6thanks james
Forum: Fixing WordPress
In reply to: how to change the media upload URL in wordpress 4.6thanks James. SHould i mark this as resolve or can I leave it open incase i have more questions and will close one once it is resolved?
Forum: Fixing WordPress
In reply to: how to change the media upload URL in wordpress 4.6ok If i added the CDN in …. Can i put it this way to include the url that was mentioned above?
in the CDN URL.. changed it to https://*.uni-corp.com
and how do I change the upload URL to point to the current url that i have? I found a line in the options data table in SQL.. does that need changing?Forum: Fixing WordPress
In reply to: how to change the media upload URL in wordpress 4.6Hi James,thanks for the reply.
because now instead of putting them into the “test.uni-corp.com/wp-contents/uploads”. the new pathway is media.uni-corp.com/uploads
and i tried doing this by
define( 'UPLOADS', 'media.uni-corp.com'.'uploads' );
into the wp-config.php file.and what i had gotten was a new folder ‘media.uni-corp.comuploads’ still within the test.uni-corp.com folder
any more ideas?
you are a lifesaver Nick! initially i had another problem which is when people put the contry as australia instead of Australia .. the validation rule doesnt apply. but now i just put the countries in a drop down and it works! ‘
though i still cant figure out how to make the country text insensitive of lower or upper case ….
any hint?
anyway thanks!
I test it by putting states in abbr form and in full but it still goes through…. please help?
sorry i am not very good at coding but
what is this line for?
$domain = array_pop(explode(‘@’, $val));
and i would like that if the country user type in australia then this validation will come out…
I think I am doing it really wrong because when i tried on my website it goes true.. the validation doesnt work..
add_filter('sfwp2l_validate_field','block_country_abbr', 10, 4); function block_country_abbr( $error, $name, /*$val, $field,*/ $country ){ if( $name == 'State' & $country == 'Australia' ){ $non_abbr = array( 'act', 'nsw', 'qld', 'sa', 'tas', 'vic,', 'wa', 'nt', 'NT', 'QLD', 'NSW', 'SA', 'ACT', 'TAS', 'VIC', 'WA' ); //$domain = array_pop(explode('@', $val)); if( in_array( /*$domain,*/ $non_abbr ) ){ $error['valid'] = false; $error['message'] = 'Please enter Australian State in Full.'; } } return $error; }
I think i should put in the array the states spelt out in full instead?
Hey Nick!
Thanks i was about to write that it was solved.. so as you said it was the SF rejecting the lead because of the what the State was written as.. so we are doing changes in the SF side of things to accept both fully written state and its abbreviated form.so this was officially resolved! thanks for the prompt respond! premium support.. ok I will look into it down the track ! thanks for your prompt respond!
I had tried to populate the lead again on my testing site.. the same thing happens. i get the success message but the lead is not populated.
Forum: Fixing WordPress
In reply to: Disabling theme alternative tableviewanyone have any ideas on how to solve this please? and the wordpress version is 4.4.2.
and one more thing… there are some tables which I have spanned columns on certain rows that i wish to center the text but when i put the following code in one table which i wish to style i dont get what i wanted…
.tablepress-id-11 .row-6 .row-7 .column-2 .column-3 .column-4 { font-family: Arial, Helvetica, sans-serif; color: #000033; text-align: center; }
this is the example on my old table which i wish to accomplish. please look at line “max working speed” & “gradeability” & “vibrating frequency”
sorry for the questions~!
or can i use the extra css classes in each page to my advantage?