Forum Replies Created

Viewing 10 replies - 1 through 10 (of 10 total)
  • Thread Starter Victor Rodriguez

    (@victor505)

    Yes, You`re right, I want to check the image dimension and acepting if this match the defined dimension,thanks you very much to put me in the rigth direction, your suggestion to use both JavaScript and PHP is great idea, I going to check the function getimagesize() to see sintax and arrays.

    Im prety sure that is the best way to do it because wordpress doesn′t have
    a function to check the dimensions of files uploaded, thanks again.

    Ok, now i can see your mistake, yes, is a comun mistake if you dont know the sintax of php, just add a backslash directly before the apostrophe.

    <h3> <?php _e('Let\'s Chat'); ?> </h3>

    Now the PHP interpreter treats the character literally and not going to interpret it.

    Hi! Teresita Morales looks like my perfect personal trainer lol, well, so you want to change that title “Latest from Blog”, why are you messing up the page after the change? did you change only the text string part:

    <h3> <?php _e('Latest from blog'); ?> </h3>
    just edit to
    <h3> <?php _e('Your custom text'); ?> </h3>

    If not working try to change that text in the .mo .po file in your dierctory template, you can use Poedit (google it) to do that, open the file an change the text to match your text then save it.

    The _e part means that is a domaintext so you can use it to change the language of your theme with out changing the php code, just editing the .po .mo files in this case you are going to change the text for customizing purpose not for language translation.

    Sound like a permalink problem maybe after the theme install/activation get dismissed try to resave your permalink configuration again after the new theme activation.

    Check deactivate some rss plugin.

    Thread Starter Victor Rodriguez

    (@victor505)

    Hi Nick!

    First thanks you for let me try the plugin with the add-on to allow visitors to add map markers.

    Well, the plugin add-on work very well with my wordpress site, just what i was looking for, a simple way to allow visitors to add map markers, now comunity feeded websites are very populars and people need to share places locations easily and your plugin can do the job very well, i know still beta so i send you my sincerely feedback.

    Pros: Easy to use, Easy to setting up, first plugin that i know can do this easily, work well with different maps on different pages, same map can be used in post and pages using the shortcode, every one can add markers, quick spam protection just take a click to users confirm they are humans.

    Cons: Still beta I know it so these are my suggestions to you>

    -Users can’t fill all forms information just three, title,location and despcription, so the admin has to ask the extra info to fill it by himself. Suggestion: this is easy want to code just lets user to fill all info needed.

    -The location: There are so many countries that doesnt has a very well documented google maps, so you can put the street adresses on the location form but the marker apears miles away, so the add-on need a minimap marker picker where the users can move the marker exactly where they want and save it, very useful improvemnent.

    -The admin control for users markers, let do more things to registered users and 100% control of markers submmiting.

    By the way:

    A money maker tip: Google MAP API let developers or publishers insert Google Adsense Ads on google maps, this a very useful tool if you want the atenttion of adsense publishers.

    I hope you can do these and others improvements to your plugin, waiting final realese to buy it, Nice work keep going.

    Sorry for the gramma errors, im still learning English( i dont like to use google translations tool so i do it by myself :-)).

    Best regards!

    Nice, this MinePress is going to be a great plugin, congratulations!, im looking for a server listing plugin for a new site that im working on, i think could be done recoding a business directory plugin and adding some features like server status, number online players, max number of players, game mode, rank, others stuffs.

    I found a very usefel php class that could be integrated to do the job, if someone elfe is interested let me know, may be we can hire @ghost1227 to do the job.

    Best regards.

    Thread Starter Victor Rodriguez

    (@victor505)

    Hi Nick great news!!

    I will waiting for the realease, this add-on is going to be very useful for my project, thanks.

    The child themes are good practice because you can change the aspect of your parent theme without change his files, but is a little hard the first time if you are a begginer on wordpress.

    To answers your question just edit the header.php, look for the access nav id=”access” div and move it to the top of the header image, before this code:

    <?php
    // Check to see if the header image has been removed
    		$header_image = get_header_image();
    		if ( ! empty( $header_image ) ) :
    ?>

    Be careful to select the entire nav access div code with his php code inside, the div begin and finish like this:

    <nav id="access" role="navigation">
        some code...
         some code...
          some code...
    </nav><!-- #access -->

    Best regards from Nicaragua!

    Thread Starter Victor Rodriguez

    (@victor505)

    Resolved, after thinking a little i use a notepad tool to findout where was that code with html margin-top: 28px !important, the tool did the search on all the wordpress files, it was in wp-includes\admin-bar.php line 674 and 675, my mistake looking intro the custom admin-bar.php theme file.

    This is usefull if after remove the admin tool bar you got a margin top space on your theme, just remove the !important attribute and add a html tag with margin-top: 0px; to your theme style.css

    Hi, the first issue:

    There are two divs inserted into a clear div, the clear divs functions is
    to realigne floating divs upon it,looks for clear div tutos, these is the code of your page:

    <div class="wrapperarea">
          <div class="headerarea">
            <div class="topleftarea">
            <div class="toprightarea">
          </div>
         <div class="clear">  /* div clear do not use like a container div.
         <div style="height:13px;"> /*replace this div after the clear div
         <div class="innerfullarea">/*replace this div after the clear div
         </div>/* end of div clear put your content after this.
         </div>
    </div>

    So you have to replace the innerfullarea div and style height 13px div, they are wrong placed, put into wrapperarea after the close div tag of clear class.
    Sorry for my English :-).

Viewing 10 replies - 1 through 10 (of 10 total)