Amit
Forum Replies Created
-
https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css is fontawesome version 4. I wanted to use version 5. You know fontawesome 5 is modern and updated icons
I am a developer.
I deactivated all plugins and switched to default theme, but the ultimate plugin’s form back still does not loading. I can see lots of javascripts and css does not loading on the console. https://prntscr.com/ko2csv
I deactivated all others plugins and active twenty seventeen theme. But, still the issue appears. Also, I updated the plugin. https://prntscr.com/kjbiwz
I tested on firefox, internet explorer and chrome on Mac OsX and windows. But, nothing working for me
Forum: Plugins
In reply to: SMOF – drop down arrayI have faced same issues. I can not add functions which will add a select options where I will able to select my stylesheet.
Suppose, I have 3 stylesheet (red.css, blue.css and green.css). Now I want to add a fuctions in SMOF where I will able to select stylesheet and my wordpress site’s design will change according to stylesheet.
My codes are below-
//Stylesheets Reader $alt_stylesheet_path = LAYOUT_PATH; $alt_stylesheets = array(); if ( is_dir($alt_stylesheet_path) ) { if ($alt_stylesheet_dir = opendir($alt_stylesheet_path) ) { while ( ($alt_stylesheet_file = readdir($alt_stylesheet_dir)) !== false ) { if(stristr($alt_stylesheet_file, ".css") !== false) { $alt_stylesheets[] = $alt_stylesheet_file; } } } }
and
$of_options_select = array("option 1","option 2","option 3"); $of_options[] = array( "name" => "Logo Uploader", "desc" => "Upload logo", "id" => "logo", "std" => "three", "type" => "select", "options" => $of_options_select );
Thanks in advance!
Forum: Themes and Templates
In reply to: How to add functions which will add upload user image optionsThanks John for your awesome help. I am very happy to do this job.
Keep well.
Forum: Themes and Templates
In reply to: How to add functions which will add upload user image optionsThanks John,
I appreciate for your great help. But I can not show user photo and any others data on author.php page.
Please can you send ma complete code which have functions.php and author.php scripts.
I want author image, facebook url upload and show in author page.
Happy coding!