Prasad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page updates not workingYou can enable the debug mode and see the errors.
[Moderated: signature removed]
- This reply was modified 7 years, 5 months ago by t-p.
Forum: Fixing WordPress
In reply to: Upload photoThere might be issue with your php.ini file. See if it’s there.
Thanks,
Prasad.Forum: Fixing WordPress
In reply to: Images Not LoadingHi Andy,
Please clear your browsers cache and check.
[Moderated: Please don’t sign your posts, it’s against the forum guidelines since we can see who you are via your name and avatar https://make.www.ads-software.com/support/handbook/forum-welcome/#avoid-signatures%5D
- This reply was modified 7 years, 5 months ago by t-p.
Forum: Fixing WordPress
In reply to: CSS and Content are not displayingYou should go with linux hosting!!
Hi Eric,
Thanks for the quick response.
Issue is not with the SSL. I have tried multiple websites URL and I’m getting the same error.
Plugins works fine only when I use non ssl URL. Any vaild URL with https is not working.
Please advise.
Thanks,
Forum: Plugins
In reply to: [Lively Chat via SMS] move plugin to new hostingThanks for your response. I have manually added data to that particular table now plugin is working fine.
Thanks!
PrasadForum: Plugins
In reply to: [Event List] hoe to sort event by dateif you want to short event by ascending order then simply replace desc with asc in below code in sc_event-list.php file
private function html_events( &$a ) { // specify to show all events if not upcoming is selected if('upcoming' != $a['actual_date']) { $a['num_events'] = 0; } $date_filter = $this->get_date_filter('all', $a['actual_date']); $cat_filter = $this->get_cat_filter($a['cat_filter'], $a['actual_cat']); if( '1' !== $this->options->get( 'el_date_once_per_day' ) ) { // normal sort $sort_array = array( 'start_date DESC', 'time DESC', 'end_date DESC' ); } else { // sort according end_date before start time (required for option el_date_once_per_day) $sort_array = array( 'start_date DESC', 'end_date DESC', 'time DESC' ); } $events = $this->db->get_events($date_filter, $cat_filter, $a['num_events'], $sort_array);
Forum: Plugins
In reply to: [Event List] hoe to sort event by datei have solved this ??
i have just replace desc with asc in sc_event-list.php
file path: event-list/includes/sc_event-list.php
Forum: Fixing WordPress
In reply to: Multilingual WordPress English and Hindi / Marathii want to display different content when language is switched…
Forum: Networking WordPress
In reply to: WordPresss function url_to_postid() returns 0 in multisiteTry these
global $blog_id; $current_blog_details = get_blog_details( array( 'blog_id' => $blog_id ) ); echo $current_blog_details->blogname;
I hope it works well ??