NazarDesign
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Custom contentHi buddy!
I had similar problems with some clients, they want to edit the content in front page, but I dont want to they touch my code, hehehe.
I solved this issue using this plugin, is easy to configure, try it out!
https://www.ads-software.com/plugins/siteorigin-panels/Regards!
Forum: Plugins
In reply to: [PrettyPhoto WPGallery] Feature image and clic to show gallery on home pageHi Webby Scots!
The site is https://www.atlantis.com. sv is made some code with custom post to show. But my question is: how I put galleries on home, Not only in pos or pages… ?
Regards!
Forum: Plugins
In reply to: [Codestyling Localization] Revista theme, textdomain problemsI have the same problem with plugin I dont understand whats wrong.
The messages error:
Error: The actual loaded translation content does not match the textdomain: amad-distance-calculator
Expect, that any text you translate will not occure as long as the textdomain is mismatching!
This is a coding issue at the source files you try to translate, please contact the original Author and explain this mismatch.Warning: The actual loaded translation content contains mixed textdomains and is not pure translateable within one textdomain.
It seems, that there is code contained extracted out of other plugins, themes or widgets and used by copy & paste inside some source files.
The affected unknown textdomains are: amad_distancecalIn PHP I call the translation with this code
$my_translator_domain = amad_distancecal;
$my_translator_is_setup = 0;
function fabfunc_setup(){
global $my_translator_domain, $my_translator_is_setup;
if($my_translator_is_setup) {
return;
}
load_plugin_textdomain($my_translator_domain,
PLUGINDIR.’/’.dirname(plugin_basename(__FILE__)),
dirname(plugin_basename(__FILE__)));
}Can help us?
Forum: Fixing WordPress
In reply to: WordPress comment php error since upgrade to 3.9Hi There!
1- Download wp-config.php from your server.
2- Open Notepad++ (really you don’t have it?) open wp-config.php
At last of wp-config.php eraser the code ;> if it writing there.
3- Go to menu Enconding and select ‘Enconde in UTF-8 without BOM’.
4- Uploading wp-config.php to your server.That’s it.
Download Notepad++
https://notepad-plus-plus.org/download/v6.5.5.htmlInformation about Byte Order Mark (BOM)
https://en.wikipedia.org/wiki/Byte_order_markForum: Plugins
In reply to: [Responsive Slider] [Plugin: Responsive Slider] Adding functionality?Hi!
You can add this functionality, follow this steps:
1- Open responsive slider folder and open, find the archive responsive-slider.php and open it in your favorite software (I prefer Notepad++)
2- Look the codeline 161
‘supports’=> array( ‘title’,’thumbnail’, ‘page-attributes’ ),
add this object ‘editor’ into supports array, then this line looks like this:‘supports’=> array( ‘title’, ‘editor’, ‘thumbnail’, ‘page-attributes’ ),
3- Now go to the codeline 261 you show the <?php the_tile(”);?> (wrap in the A html tag) add after this line <?php the_content(”);?>
That is all.
P.D. You can wrap in h3 or p html tag to make easy work with css.