wpamanuke
Forum Replies Created
-
Forum: Reviews
In reply to: [Headline] Excellent theme.Thank you for the reviews. If you have any recommendations which should be added . Don’t hesitate to comment in here
Forum: Plugins
In reply to: [Resume / CV] Resume / CV admin area is missingHi ..
I have updated in version 1.1.6 . Just update your resume cv plugins
Regards
Forum: Plugins
In reply to: [Resume / CV] Resume / CV admin area is missingHi ..
Thank you for the info. I have looked for bugs on it .
Actually it because CMB2 plugin which i use not compatible yet with WordPress 5.0.3 .
If i use the newest CMB2 plugin which is newest , the repeater in the Experience etc not working .
I will inform you and update the plugin , after found the solution for this.Regards .
Forum: Plugins
In reply to: [Resume / CV] customizationjust add in your functions.php / your own plugin this code
function asalto_external_css() { echo '<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i">'; echo '<style> body { font-size:20px; } h1,h2 { font-size:30px; } </style>'; } add_action('resumecv-footer','asalto_external_css');Forum: Plugins
In reply to: [Resume / CV] header & footerI hope it suit like which you want .
Forum: Plugins
In reply to: [Resume / CV] header & footerHello
I have made some modifications for that
1. MENUS
You can use Appereance->Menus -> Manage Locations .. Just setup Resume CV Primary for your menus
2. FOOTER
You can use widgets.
You can use Appereance->Widgets -> Resume CV Footer 1 .. Just Add widgets which you need ..Thanks
Forum: Reviews
In reply to: [Showcase Theme Preview Reloaded] Simply amazing !Thanks for review
I have added include and exclude ..
If you want to exclude just use this shortcode [theme_showcase exclude=”twentythirteen,nysu-magazine,nyeuseu-magazine”] . So if you don’t want activate theme show just fill the name / name slug in the exclude parameter ..
If you want to show specific themes only, use include like this : [theme_showcase include=”twentythirteen,nysu-magazine,nyeuseu-magazine”]Regards ..
Forum: Plugins
In reply to: [Resume / CV] Short codes?Hi .
Do you mean adding portfolio section (like images that link to your project ) in the resume page ?
If that which you mean , it doesn’t support yet .
But i will add it in the next version .Regards .
Forum: Plugins
In reply to: [Resume / CV] …hobby…Hello
You can add upload image for hobby in version 1.1.2 .
I have added field to upload image for hobby .Thanks
Forum: Plugins
In reply to: [Resume / CV] customizationIf you want to use external css here is the example :
function area97_external_css() { echo "<link rel='stylesheet' href='". get_template_directory_uri() . '/public/area97.css' ."' type='text/css' media='all' />"; } add_action('resumecv-footer','area97_external_css');Forum: Plugins
In reply to: [Resume / CV] customizationHello ,
Sorry for long reply . I just recognized there is question in the forum .
TO customize color . in your theme functions.php .. just add this if you want inline cssfunction area97_customcss() { echo '<style> body { background:#ff0000; } </style>'; } add_action('resumecv-footer','area97_customcss');